Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 664 for EXISTS (0.14 sec)

  1. pkg/controller/daemon/util/daemonset_util_test.go

    		val, exists := newPodTemplate.ObjectMeta.Labels[extensions.DaemonSetTemplateGenerationKey]
    		if !exists || val != fmt.Sprint(*test.templateGeneration) {
    			t.Errorf("Expected podTemplateSpec to have generation label value: %d, got: %s", *test.templateGeneration, val)
    		}
    		val, exists = newPodTemplate.ObjectMeta.Labels[extensions.DefaultDaemonSetUniqueLabelKey]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. pkg/kubelet/util/manager/watch_based_manager.go

    	// It's responsibility of the first Get operation to wait until the
    	// reflector propagated the store.
    	c.lock.Lock()
    	defer c.lock.Unlock()
    	item, exists := c.items[key]
    	if !exists {
    		item = c.newReflectorLocked(namespace, name)
    		c.items[key] = item
    	}
    	item.refMap[referencedFrom]++
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. cmd/admin-heal-ops.go

    // argument returns if a heal sequence actually exists.
    func (ahs *allHealState) getHealSequence(path string) (h *healSequence, exists bool) {
    	ahs.RLock()
    	defer ahs.RUnlock()
    	h, exists = ahs.healSeqMap[path]
    	return h, exists
    }
    
    func (ahs *allHealState) stopHealSequence(path string) ([]byte, APIError) {
    	var hsp madmin.HealStopSuccess
    	he, exists := ahs.getHealSequence(path)
    	if !exists {
    		hsp = madmin.HealStopSuccess{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    	}
    
    	authHeader, exists := md[authorizationMeta]
    	if !exists {
    		return "", fmt.Errorf("no HTTP authorization header exists")
    	}
    
    	for _, value := range authHeader {
    		if strings.HasPrefix(value, bearerTokenPrefix) {
    			return strings.TrimPrefix(value, bearerTokenPrefix), nil
    		}
    	}
    
    	return "", fmt.Errorf("no bearer token exists in HTTP authorization header")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        }
    
        private boolean isMarkedLocation(File candidate) {
            return new File(candidate, MARKER_FILE).exists();
        }
    
        private File getJavaHome(File location) {
            if (OperatingSystem.current().isMacOsX()) {
                if (new File(location, MAC_OS_JAVA_HOME_FOLDER).exists()) {
                    return new File(location, MAC_OS_JAVA_HOME_FOLDER);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            given:
            def input = file("input.txt").createFile()
            def outputDirectory = file("output")
    
            def brokenLink = outputDirectory.file('link').createLink("broken")
            assert !brokenLink.exists()
    
            buildFile << """
                task copy(type: Copy) {
                    from '${input.name}'
                    into '${outputDirectory.name}'
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	/* Prepare to write files */
    	// if either file exists, someone has been here ahead of us
    	// (there is still a race, but this check shortens the open window)
    	if _, err := os.Stat(localFileName); err == nil {
    		u.deleteFiles(countFiles)
    		return "", fmt.Errorf("local report %s already exists", localFileName)
    	}
    	if _, err := os.Stat(uploadFileName); err == nil {
    		u.deleteFiles(countFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	// attached volumes, this is a no-op.
    	// If a volume with the name volumeName exists and its list of mountedPods
    	// is not empty, an error is returned.
    	DeleteVolume(volumeName v1.UniqueVolumeName) error
    
    	// PodExistsInVolume returns true if the given pod exists in the list of
    	// mountedPods for the given volume in the cache, indicating that the volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

                def (String group, String module, String version) = notation.split(':') as List
                dependency(group, module, version, action)
            }
    
            DependencyConstraintView constraint(String group, String module, String version, @DelegatesTo(value=DependencyView, strategy= Closure.DELEGATE_FIRST) Closure<Void> action = { exists() }) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. cmd/admin-bucket-handlers.go

    	}
    
    	target.SourceBucket = bucket
    	var ops []madmin.TargetUpdateType
    	if update {
    		ops = madmin.GetTargetUpdateOps(r.Form)
    	} else {
    		var exists bool // true if arn exists
    		target.Arn, exists = globalBucketTargetSys.getRemoteARN(bucket, &target, "")
    		if exists && target.Arn != "" { // return pre-existing ARN
    			data, err := json.Marshal(target.Arn)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top