Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,770 for instanceId (0.22 sec)

  1. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    //
    // * The cloudproviders have the own names: GCE has InstanceName, AWS has InstanceId.
    //
    //	For GCE, InstanceName is the Name of an Instance object in the GCE API.  On GCE, Instance.Name becomes the
    //	Hostname, and thus it makes sense also to use it as the Node.Name.  But that is GCE specific, and it is up
    //	to the cloudprovider how to do this mapping.
    //
    //	For AWS, the InstanceID is not yet suitable for use as a Node.Name, so we actually use the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/autoregistration/controller.go

    		// if overflow, set it to max int64
    		if maxConnAge < 0 {
    			maxConnAge = time.Duration(math.MaxInt64)
    		}
    	}
    	c := &Controller{
    		instanceID:       instanceID,
    		store:            store,
    		cleanupLimit:     rate.NewLimiter(rate.Limit(20), 1),
    		cleanupQueue:     queue.NewDelayed(),
    		adsConnections:   newAdsConnections(),
    		maxConnectionAge: maxConnAge,
    	}
    	c.queue = controllers.NewQueue("unregister_workloadentry",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cadvisor/testing/cadvisor_fake.go

    	// Simulate a machine with 1 core and 3.75GB of memory.
    	// We set it to non-zero values to make non-zero-capacity machines in Kubemark.
    	return &cadvisorapi.MachineInfo{
    		NumCores:       fakeNumCores,
    		InstanceID:     cadvisorapi.InstanceID(c.NodeName),
    		MemoryCapacity: fakeMemoryCapacity,
    	}, nil
    }
    
    // VersionInfo is a fake implementation of Interface.VersionInfo.
    func (c *Fake) VersionInfo() (*cadvisorapi.VersionInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/LenientPlatformGraphResolveState.java

        }
    
        private LenientPlatformGraphResolveState(long instanceId, LenientPlatformResolveMetadata metadata, ComponentIdGenerator componentIdGenerator, ResolveState resolveState) {
            super(instanceId, metadata, metadata, resolveState.getAttributeDesugaring(), componentIdGenerator);
            this.componentIdGenerator = componentIdGenerator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/CommandLineToolVersionLocatorTest.groovy

                  },
                  {
                    "instanceId": "VisualStudio.14.0",
                    "installationPath": "${TextUtil.escapeString(localRoot.absolutePath)}/Program Files/Microsoft Visual Studio 14.0/",
                    "installationVersion": "14.0"
                  },
                  {
                    "instanceId": "VisualStudio.12.0",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/pod_devices.go

    		if _, exists := rdev[resourceName]; !exists {
    			continue
    		}
    		filtered[resourceName] = DeviceInstances{}
    		for instanceID, instance := range rdev[resourceName] {
    			if filterIDs.Has(instanceID) {
    				filtered[resourceName][instanceID] = instance
    			}
    		}
    	}
    	return filtered
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

            _ * componentMetadata.moduleVersionId >> DefaultModuleVersionIdentifier.newId(DefaultModuleIdentifier.newId(org, name), ver)
    
            def componentState = Stub(ComponentGraphResolveState)
            _ * componentState.instanceId >> componentId
            _ * componentState.id >> DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId(org, name), ver)
            _ * componentState.metadata >> componentMetadata
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/bootstrap/platform/gcp.go

    		if err != nil {
    			log.Warnf("unable to retrieve instance labels: %v", err)
    			success <- false
    			return
    
    		}
    		defer resp.Body.Close()
    		instance := &GcpInstance{}
    		if err := json.NewDecoder(resp.Body).Decode(instance); err != nil {
    			log.Warnf("failed to decode response: %v", err)
    			success <- false
    			return
    		}
    		instanceLabels = instance.Labels
    		success <- true
    	}()
    	select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/instances.go

    	sort.Stable(out)
    	return out
    }
    
    // Copy this Instances array.
    func (i Instances) Copy() Instances {
    	return append(Instances{}, i...)
    }
    
    // Append returns a new Instances array with the given values appended.
    func (i Instances) Append(instances Instances) Instances {
    	return append(i.Copy(), instances...)
    }
    
    // Restart each Instance
    func (i Instances) Restart() error {
    	g := multierror.Group{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    }
    
    //sys	setupDiGetDeviceInstanceId(deviceInfoSet DevInfo, deviceInfoData *DevInfoData, instanceId *uint16, instanceIdSize uint32, instanceIdRequiredSize *uint32) (err error) = setupapi.SetupDiGetDeviceInstanceIdW
    
    // SetupDiGetDeviceInstanceId function retrieves the instance ID of the device.
    func SetupDiGetDeviceInstanceId(deviceInfoSet DevInfo, deviceInfoData *DevInfoData) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
Back to top