Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for unsat (0.16 sec)

  1. src/cmd/go/go_test.go

    	tg.setenv("GOROOT", tg.path("home/go"))
    	tg.run("env", "GOPATH")
    	tg.grepStdoutNot(".", "want unset GOPATH because GOROOT=$HOME/go")
    
    	tg.setenv("GOROOT", tg.path("home/go")+"/")
    	tg.run("env", "GOPATH")
    	tg.grepStdoutNot(".", "want unset GOPATH because GOROOT=$HOME/go/")
    }
    
    func TestDefaultGOPATHPrintedSearchList(t *testing.T) {
    	tg := testgo(t)
    	defer tg.cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	unreserve  change
    	prebind    change
    	postbind   change
    	postfilter change
    }
    
    func TestPlugin(t *testing.T) {
    	testcases := map[string]struct {
    		nodes       []*v1.Node // default if unset is workerNode
    		pod         *v1.Pod
    		claims      []*resourcev1alpha2.ResourceClaim
    		classes     []*resourcev1alpha2.ResourceClass
    		schedulings []*resourcev1alpha2.PodSchedulingContext
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Watch(ctx context.Context, key string, opts storage.ListOptions) (watch.Interface, error) {
    	pred := opts.Predicate
    	// if the watch-list feature wasn't set and the resourceVersion is unset
    	// ensure that the rv from which the watch is being served, is the latest
    	// one. "latest" is ensured by serving the watch from
    	// the underlying storage.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			cancel() // cancel this upfront so the kms v2 healthz check poll does not run
    			_, got, kmsUsed, err := getTransformerOverridesAndKMSPluginProbes(ctx, config, "")
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			// unset fields that are not relevant to the test
    			for i := range got {
    				checker := got[i]
    				switch p := checker.(type) {
    				case *kmsPluginProbe:
    					p.service = nil
    					p.l = nil
    					p.lastResponse = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    	//   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
    	// If unset, defaults to 0. Replica indices will be in the range:
    	//   [0, .spec.replicas).
    	// +optional
    	Start int32 `json:"start" protobuf:"varint,1,opt,name=start"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    		cert, err := X509KeyPair(certPEM, keyPEM)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if cert.Leaf == nil {
    			t.Fatal("Leaf should be populated")
    		}
    	})
    	t.Run("GODEBUG unset", func(t *testing.T) {
    		cert, err := X509KeyPair(certPEM, keyPEM)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if cert.Leaf == nil {
    			t.Fatal("Leaf should be populated")
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    		// Finished. See RFC 8446, Appendix D.4. Note that according to Section
    		// 5, a server can send a ChangeCipherSpec before its ServerHello, when
    		// c.vers is still unset. That's not useful though and suspicious if the
    		// server then selects a lower protocol version, so don't allow that.
    		if c.vers == VersionTLS13 {
    			return c.retryReadRecord(expectChangeCipherSpec)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    	// argument that has the same module path as, and a lower version than,
    	// the last element of the Path slice.
    	Constraint module.Version
    
    	// If Constraint is unset, Err is an error encountered when loading the
    	// requirements of the last element in Path.
    	Err error
    }
    
    // UnwrapModuleError returns c.Err, but unwraps it if it is a module.ModuleError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/go/build/build.go

    				// TODO(bcmills): Setting p.Dir here is misleading, because gccgo
    				// doesn't actually load its standard-library packages from this
    				// directory. See if we can leave it unset.
    				p.Dir = ctxt.joinPath(ctxt.GOROOT, "src", path)
    				p.Goroot = true
    				p.Root = ctxt.GOROOT
    				goto Found
    			}
    		}
    		for _, root := range gopath {
    			dir := ctxt.joinPath(root, "src", path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    #ifdef GOOS_windows
    // Dummy TLS that's used on Windows so that we don't crash trying
    // to restore the G register in needm. needm and its callees are
    // very careful never to actually use the G, the TLS just can't be
    // unset since we're in Go code.
    GLOBL zeroTLS<>(SB),RODATA,$const_tlsSize
    #endif
    
    // func cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
    // See cgocall.go for more details.
    TEXT ·cgocallback(SB),NOSPLIT,$24-24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top