Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for 20something (0.22 sec)

  1. tests/integration/ambient/baseline_test.go

    `,
    				},
    				{
    					name:  "not allow",
    					check: CheckDeny,
    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/something/sa/else"]
              `,
    				},
    			}
    
    			for _, tc := range authzCases {
    				t.NewSubTest(tc.name).Run(func(t framework.TestContext) {
    					t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	//    budget (defaulted to 100ms) on waiting, we will simply close the watch,
    	//    which will cause the test failure
    	// Using fakeTimeBudget gives us always a budget to wait and have a test
    	// pick up something from ResultCh in the meantime.
    	//
    	// The same can potentially happen in production, but in that case a watch
    	// can be resumed by the client. This doesn't work in the case of this test,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. src/go/build/build.go

    			rootsrc := ctxt.joinPath(root, "src")
    			if sub, ok := ctxt.hasSubdir(rootsrc, p.Dir); ok && !inTestdata(sub) {
    				// We found a potential import path for dir,
    				// but check that using it wouldn't find something
    				// else first.
    				if ctxt.GOROOT != "" && ctxt.Compiler != "gccgo" {
    					if dir := ctxt.joinPath(ctxt.GOROOT, "src", sub); ctxt.isDir(dir) {
    						p.ConflictDir = dir
    						goto Found
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix_test.go

    				Questions: q.Questions,
    			}, nil
    		},
    	}, "golang.org.", dnsmessage.TypeALL)
    	if err == nil {
    		t.Fatal("expected an error")
    	}
    	if ne, ok := err.(Error); !ok {
    		t.Fatalf("err = %#v; wanted something supporting net.Error", err)
    	} else if !ne.Temporary() {
    		t.Fatalf("Temporary = false for err = %#v; want Temporary == true", err)
    	}
    	if de, ok := err.(*DNSError); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    		rzBeg := unsafe.Add(x, userSize)
    		asanpoison(rzBeg, size-userSize)
    		asanunpoison(x, userSize)
    	}
    
    	// TODO(mknyszek): We should really count the header as part
    	// of gc_sys or something. The code below just pretends it is
    	// internal fragmentation and matches the GC's accounting by
    	// using the whole allocation slot.
    	fullSize := span.elemsize
    	if rate := MemProfileRate; rate > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    	OPCODE_BASE = 11
    )
    
    /*
     * Walk prog table, emit line program and build DIE tree.
     */
    
    func getCompilationDir() string {
    	// OSX requires this be set to something, but it's not easy to choose
    	// a value. Linking takes place in a temporary directory, so there's
    	// no point including it here. Paths in the file table are usually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    See the <<configuration_cache#config_cache:troubleshooting>> section below for more information.
    
    Keep reading to learn how to tweak the configuration cache, manually invalidate the state if something goes wrong and use the configuration cache from an IDE.
    
    [[config_cache:usage:enable]]
    === Enabling the configuration cache
    
    By default, Gradle does not use the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    			// a goroutine to call client.Read and thus process the
    			// renegotiation request, watch for OpenSSL's stdout to
    			// indicate that the handshake is complete and,
    			// finally, have OpenSSL write something to cause
    			// client.Read to complete.
    			if write {
    				stdin <- opensslRenegotiate
    			}
    
    			signalChan := make(chan struct{})
    
    			go func() {
    				defer close(signalChan)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    	return x == nil || y == nil
    }
    
    // canMergeLoadClobber reports whether the load can be merged into target without
    // invalidating the schedule.
    // It also checks that the other non-load argument x is something we
    // are ok with clobbering.
    func canMergeLoadClobber(target, load, x *Value) bool {
    	// The register containing x is going to get clobbered.
    	// Don't merge if we still need the value of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Something else to consider is what type of thing a file path refers to:
    
    * A file — the file is copied as is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top