Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for found$ (0.15 sec)

  1. cmd/storage-errors.go

    var errCorruptedBackend = StorageErr("corrupted backend")
    
    // errUnformattedDisk - unformatted disk found.
    var errUnformattedDisk = StorageErr("unformatted drive found")
    
    // errInconsistentDisk - inconsistent disk found.
    var errInconsistentDisk = StorageErr("inconsistent drive found")
    
    // errUnsupporteDisk - when disk does not support O_DIRECT flag.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. cmd/object-api-errors.go

    }
    
    // BucketSSEConfigNotFound - no bucket encryption found
    type BucketSSEConfigNotFound GenericError
    
    func (e BucketSSEConfigNotFound) Error() string {
    	return "No bucket encryption configuration found for bucket: " + e.Bucket
    }
    
    // BucketTaggingNotFound - no bucket tags found
    type BucketTaggingNotFound GenericError
    
    func (e BucketTaggingNotFound) Error() string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. src/go/types/resolver_test.go

    		}
    	}
    
    	// check that each identifier in the source is found in uses or defs or both
    	var both []string
    	for _, f := range files {
    		ast.Inspect(f, func(n ast.Node) bool {
    			if x, ok := n.(*ast.Ident); ok {
    				var objects int
    				if _, found := uses[x]; found {
    					objects |= 1
    					delete(uses, x)
    				}
    				if _, found := defs[x]; found {
    					objects |= 2
    					delete(defs, x)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/runtime/trace_cgo_test.go

    	}
    	for _, tracefpunwindoff := range []int{1, 0} {
    		env := fmt.Sprintf("GODEBUG=tracefpunwindoff=%d", tracefpunwindoff)
    		got := runBuiltTestProg(t, exe, "Trace", env)
    		prefix, tracePath, found := strings.Cut(got, ":")
    		if !found || prefix != "trace path" {
    			t.Fatalf("unexpected output:\n%s\n", got)
    		}
    		defer os.Remove(tracePath)
    
    		traceData, err := os.ReadFile(tracePath)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/unique/clone.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unique
    
    import (
    	"internal/abi"
    	"internal/stringslite"
    	"unsafe"
    )
    
    // clone makes a copy of value, and may update string values found in value
    // with a cloned version of those strings. The purpose of explicitly cloning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

     * is that a module cannot be found in a repository, independently of its version,
     * then it's enough to just look at the module id using {@link #getModuleId()}.
     * <p></p>
     * However, if you have to differentiate depending on the version number (for example,
     * some versions of a module are found in one repository, others in a different repository),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    func (f *fakePodStateProvider) IsPodTerminationRequested(uid types.UID) bool {
    	_, found := f.removed[uid]
    	return found
    }
    
    func (f *fakePodStateProvider) ShouldPodRuntimeBeRemoved(uid types.UID) bool {
    	_, found := f.terminated[uid]
    	return found
    }
    
    func (f *fakePodStateProvider) ShouldPodContentBeRemoved(uid types.UID) bool {
    	_, found := f.removed[uid]
    	return found
    }
    
    type fakePodPullingTimeRecorder struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/node_authorizer.go

    		if n.ID() == nodeVertex.ID() {
    			// We found the node we want
    			found = true
    		}
    		// Stop visiting if we've found the node we want
    		return found
    	})
    	if !found {
    		return false, fmt.Errorf("node '%s' cannot get %s %s/%s, no relationship to this object was found in the node authorizer graph", nodeName, vertexTypes[startingType], startingNamespace, startingName)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/InsecureProtocolOption.java

        /**
         * Fail if a URL with an insecure protocol is found.
         *
         * Refuse to generate a Gradle build.
         */
        FAIL,
    
        /**
         * Emit a warning if a URL with an insecure protocol is found.
         *
         * The generated Gradle build will fail at runtime.
         */
        WARN,
    
        /**
         * Allow insecure protocols to be used when found.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. pkg/controller/util/selectors/bimultimap_test.go

    			return fmt.Errorf("Found empty key for labeled object %+v", v)
    		}
    	}
    	for k, v := range m.selectingObjects {
    		if v == nil {
    			return fmt.Errorf("Found nil selecting object for key %q", k)
    		}
    		if k == emptyKey {
    			return fmt.Errorf("Found empty key for selecting object %+v", v)
    		}
    	}
    	for k, v := range m.labeledBySelecting {
    		if v == nil {
    			return fmt.Errorf("Found nil labeledBySelecting entry for key %q", k)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 01:56:36 UTC 2022
    - 16.9K bytes
    - Viewed (0)
Back to top