Home
last modified time | relevance | path

Searched refs:MachineName (Results 26 – 50 of 1071) sorted by relevance

12345678910>>...43

/dports/www/drupal9/drupal-9.2.10/core/modules/migrate/tests/src/Unit/process/
H A DMachineNameTest.php5 use Drupal\migrate\Plugin\migrate\process\MachineName; alias
60 $plugin = new MachineName($configuration, 'machine_name', [], $this->transliteration);
100 new MachineName($configuration, 'machine_name', [], $this->transliteration);
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/libmachine/drivers/
H A Dbase.go18 MachineName string member
35 return d.MachineName
78 return filepath.Join(d.StorePath, "machines", d.MachineName, file)
/dports/sysutils/docker-machine/machine-0.16.2/libmachine/drivers/
H A Dbase.go18 MachineName string member
35 return d.MachineName
78 return filepath.Join(d.StorePath, "machines", d.MachineName, file)
/dports/sysutils/docker-machine/machine-0.16.2/drivers/vmwarevsphere/
H A Dvsphere.go182 MachineName: hostName,
260 vm, err := d.fetchVM(ctx, c, d.MachineName)
303 vm, err := d.fetchVM(ctx, c, d.MachineName)
495 Name: d.MachineName,
532 dsurl, err := dss.URL(ctx, dc, fmt.Sprintf("%s/%s", d.MachineName, isoFilename))
557 dss.Path(fmt.Sprintf("%s/%s.vmdk", d.MachineName, d.MachineName)))
727 log.Infof("VM %s has already been started", d.MachineName)
741 vm, err := d.fetchVM(ctx, c, d.MachineName)
774 vm, err := d.fetchVM(ctx, c, d.MachineName)
830 vm, err := d.fetchVM(ctx, c, d.MachineName)
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/drivers/vmwarevcloudair/
H A Dvcloudair.go137 MachineName: hostName,
303 log.Infof("Creating a new vApp: %s...", d.MachineName)
305 …task, err := vapp.ComposeVApp(net, vapptemplate, d.MachineName, "Container Host created with Docke…
335 task, err = vapp.RunCustomizationScript(d.MachineName, sshCustomScript)
356 …App.Children.VM[0].NetworkConnectionSection.NetworkConnection.IPAddress, d.PublicIP, d.MachineName)
419 log.Infof("Powering Off %s...", d.MachineName)
430 log.Debugf("Undeploying %s...", d.MachineName)
439 log.Infof("Deleting %s...", d.MachineName)
479 log.Infof("Starting %s...", d.MachineName)
/dports/sysutils/docker-machine/machine-0.16.2/drivers/vmwarevcloudair/
H A Dvcloudair.go137 MachineName: hostName,
303 log.Infof("Creating a new vApp: %s...", d.MachineName)
305 …task, err := vapp.ComposeVApp(net, vapptemplate, d.MachineName, "Container Host created with Docke…
335 task, err = vapp.RunCustomizationScript(d.MachineName, sshCustomScript)
356 …App.Children.VM[0].NetworkConnectionSection.NetworkConnection.IPAddress, d.PublicIP, d.MachineName)
419 log.Infof("Powering Off %s...", d.MachineName)
430 log.Debugf("Undeploying %s...", d.MachineName)
439 log.Infof("Deleting %s...", d.MachineName)
476 log.Infof("Starting %s...", d.MachineName)
/dports/www/drupal9/drupal-9.2.10/core/tests/Drupal/Tests/Core/Render/Element/
H A DMachineNameTest.php10 use Drupal\Core\Render\Element\MachineName; alias
28 $this->assertSame($expected, MachineName::valueCallback($element, $input, $form_state));
93 $element = MachineName::processMachineName($element, $form_state, $complete_form);
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Diagnostics/
H A DEventLog.cs146 public string MachineName { property in System.Diagnostics.EventLog
236 if (!EventLog.Exists (logName, MachineName)) in Clear()
282 if (SourceExists (sourceData.Source, sourceData.MachineName)) in CreateEventSource()
285 sourceData.MachineName)); in CreateEventSource()
288 sourceData.MachineName, sourceData.Source); in CreateEventSource()
594 if (!SourceExists (Source, MachineName)) { in WriteEntry()
598 CreateEventSource (Source, Log, MachineName); in WriteEntry()
601 string actualLog = LogNameFromSourceName (Source, MachineName); in WriteEntry()
/dports/www/drupal8/drupal-8.9.20/core/tests/Drupal/Tests/Core/Render/Element/
H A DMachineNameTest.php10 use Drupal\Core\Render\Element\MachineName; alias
28 $this->assertSame($expected, MachineName::valueCallback($element, $input, $form_state));
93 $element = MachineName::processMachineName($element, $form_state, $complete_form);
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.EventLog/src/System/Diagnostics/
H A DEventSourceCreationData.cs21 MachineName = machineName; in EventSourceCreationData()
26 public string MachineName { get; set; } = "."; property in System.Diagnostics.EventSourceCreationData
H A DEventLogEntry.cs43 public string MachineName property in System.Diagnostics.EventLogEntry
289 …if (Interop.Kernel32.LookupAccountSid(MachineName, sid, bufUserName, ref userNameLen, bufDomainNam…
400 regKey = GetSourceRegKey(owner.Log, Source, owner.MachineName); in GetMessageLibraryNames()
414 if (owner.MachineName != ".") in GetMessageLibraryNames()
425 result.Append(owner.MachineName); in GetMessageLibraryNames()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.EventLog/tests/EventLogTests/
H A DEventLogTests.cs92 Assert.Equal(".", eventLog.MachineName); in CheckMachineName_Get()
232 eventLog.MachineName = Environment.MachineName.ToLowerInvariant(); in MachineName_Set()
236 Assert.Equal(eventLog.MachineName, Environment.MachineName.ToLowerInvariant()); in MachineName_Set()
237 … Assert.True(EventLog.SourceExists(source, Environment.MachineName.ToLowerInvariant())); in MachineName_Set()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/services/monitoring/system/diagnosticts/
H A DEventLogPermissionEntry.cs32 public string MachineName { property in System.Diagnostics.EventLogPermissionEntry
46 …sourcePermissionBaseEntry((int)this.PermissionAccess, new string[] {this.MachineName}); in GetBaseEntry()
H A DEventLogPermissionAttribute.cs26 public string MachineName { property in System.Diagnostics.EventLogPermissionAttribute
53 return new EventLogPermission(this.PermissionAccess, this.MachineName); in CreatePermission()
H A DPerformanceCounterPermissionAttribute.cs41 public string MachineName { property in System.Diagnostics.PerformanceCounterPermissionAttribute
68 …return new PerformanceCounterPermission(this.PermissionAccess, this.MachineName, this.CategoryName… in CreatePermission()
H A DPerformanceCounterPermissionEntry.cs48 public string MachineName { property in System.Diagnostics.PerformanceCounterPermissionEntry
62 …urcePermissionBaseEntry((int)this.PermissionAccess, new string[] {this.MachineName, this.CategoryN… in GetBaseEntry()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.PerformanceCounter/src/System/Diagnostics/
H A DPerformanceCounter.cs74 MachineName = machineName; in PerformanceCounter()
85 MachineName = machineName; in PerformanceCounter()
111 MachineName = "."; in PerformanceCounter()
289 public string MachineName property in System.Diagnostics.PerformanceCounter
298 …throw new ArgumentException(SR.Format(SR.InvalidProperty, nameof(MachineName), value), nameof(valu…
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.PerformanceCounter/tests/
H A DPerformanceCounterCategoryTests.cs19 Assert.Equal(".", pcc.MachineName); in PerformanceCounterCategory_CreatePerformanceCounterCategory_DefaultConstructor()
52 Assert.Throws<ArgumentException>(() => pcc.MachineName = string.Empty); in PerformanceCounterCategory_SetMachineName_Invalid()
60 pcc.MachineName = "machineName"; in PerformanceCounterCategory_SetMachineName_ValidCategoryNameNull()
61 Assert.Equal("machineName", pcc.MachineName); in PerformanceCounterCategory_SetMachineName_ValidCategoryNameNull()
70 pcc.MachineName = "machineName"; in PerformanceCounterCategory_SetMachineName_ValidCategoryNameNotNull()
71 Assert.Equal("machineName", pcc.MachineName); in PerformanceCounterCategory_SetMachineName_ValidCategoryNameNotNull()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities.DurableInstancing/System/Activities/DurableInstancing/
H A DSqlWorkflowInstanceStoreConstants.cs21 public static readonly string MachineName = Environment.MachineName; field in System.Activities.DurableInstancing.SqlWorkflowInstanceStoreConstants
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Security.Tokens/
H A DSspiSession.cs137 TargetName = Environment.MachineName; in ProcessMessageType3()
138 ServerName = Environment.MachineName; in ProcessMessageType3()
234 TargetName = Environment.MachineName; in ProcessMessageType2()
235 ServerName = Environment.MachineName; in ProcessMessageType2()
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/libmachine/drivers/rpc/
H A Dclient_driver.go53 MachineName string member
90 log.Debugf("(%s) Calling %+v", ic.MachineName, serviceMethod)
161 …log.Debugf("Client (%s) with %s does not work, re-attempting with %s", c.Client.MachineName, RPCSe…
194 p.MachineName = mcnName
195 c.Client.MachineName = mcnName
/dports/sysutils/docker-machine/machine-0.16.2/libmachine/drivers/rpc/
H A Dclient_driver.go53 MachineName string member
90 log.Debugf("(%s) Calling %+v", ic.MachineName, serviceMethod)
161 …log.Debugf("Client (%s) with %s does not work, re-attempting with %s", c.Client.MachineName, RPCSe…
194 p.MachineName = mcnName
195 c.Client.MachineName = mcnName
/dports/www/drupal8/drupal-8.9.20/core/modules/migrate/tests/src/Unit/process/
H A DMachineNameTest.php5 use Drupal\migrate\Plugin\migrate\process\MachineName; alias
56 $plugin = new MachineName([], 'machine_name', [], $this->transliteration);
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Administration/
H A DAppDomainInfo.cs34 this.machineName = Environment.MachineName; in AppDomainInfo()
56 public string MachineName property in System.ServiceModel.Administration.AppDomainInfo
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/drivers/vmwarefusion/
H A Dfusion_darwin.go124 MachineName: hostName,
242 if err := b2dutils.CopyIsoToMachineDir(d.Boot2DockerURL, d.MachineName); err != nil {
276 diskImg := d.ResolveStorePath(fmt.Sprintf("%s.vmdk", d.MachineName))
287 log.Infof("Starting %s...", d.MachineName)
328 log.Infof("Copy public SSH key to %s [%s]", d.MachineName, d.IPAddress)
457 log.Infof("Deleting %s...", d.MachineName)
467 return d.ResolveStorePath(fmt.Sprintf("%s.vmx", d.MachineName))
471 return d.ResolveStorePath(fmt.Sprintf("%s.vmdk", d.MachineName))

12345678910>>...43