Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for realm (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		t.Fatal("unable to create fake client set")
    	}
    	return clientset
    }
    
    // builds a chain of handlers that include the panic recovery and timeout filter, so we can simulate the behavior of
    // a real apiserver.
    // the specified user is added as the authenticated user to the request context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

     *             return createExpensiveGraph(key);
     *           }
     *         });
     * }</pre>
     *
     * <p>Or equivalently,
     *
     * <pre>{@code
     * // In real life this would come from a command-line flag or config file
     * String spec = "maximumSize=10000,expireAfterWrite=10m";
     *
     * LoadingCache<Key, Graph> graphs = CacheBuilder.from(spec)
     *     .removalListener(MY_LISTENER)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    	}
    	b, err := io.ReadAll(r.Body)
    	if err != nil {
    		t.Fatalf("%s: for URL %q, reading body: %v", testName, req.URL.String(), err)
    	}
    	return r, b
    }
    
    // TestLinuxSendfileChild isn't a real test. It's used as a helper process
    // for TestLinuxSendfile.
    func TestLinuxSendfileChild(*testing.T) {
    	if os.Getenv("GO_WANT_HELPER_PROCESS") != "1" {
    		return
    	}
    	defer os.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	// additions.
    	files := xreaddir(dir)
    
    	// Remove files beginning with . or _,
    	// which are likely to be editor temporary files.
    	// This is the same heuristic build.ScanDir uses.
    	// There do exist real C files beginning with _,
    	// so limit that check to just Go files.
    	files = filter(files, func(p string) bool {
    		return !strings.HasPrefix(p, ".") && (!strings.HasPrefix(p, "_") || !strings.HasSuffix(p, ".go"))
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        //
        // HttpUrl is quite lenient with what characters it accepts. In particular, characters like '{'
        // and '"' are permitted but unlikely to occur in real-world URLs. Unfortunately we can't just
        // lock it down due to URL templating: "http://{env}.{dc}.example.com".
        UrlComponentEncodingTester.newInstance()
          .nonPrintableAscii(Encoding.FORBIDDEN)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    		// First message, be extra suspicious: this might not be a TLS
    		// client. Bail out before reading a full 'body', if possible.
    		// The current max version is 3.3 so if the version is >= 16.0,
    		// it's probably not real.
    		if (typ != recordTypeAlert && typ != recordTypeHandshake) || vers >= 0x1000 {
    			return c.in.setErrorLocked(c.newRecordHeaderError(c.conn, "first record does not look like a TLS handshake"))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    func SetsockoptTimeval(fd Handle, level, opt int, tv *Timeval) (err error) { return EWINDOWS }
    
    // The Linger struct is wrong but we only noticed after Go 1.
    // sysLinger is the real system call structure.
    
    // BUG(brainman): The definition of Linger is not appropriate for direct use
    // with Setsockopt and Getsockopt.
    // Use SetsockoptLinger instead.
    
    type Linger struct {
    	Onoff  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          // to
          //     Fill(Concat(num_element, element_shape), 0)
          // because element_shape may contain -1 to represent unknown dimension.
          //
          // In real world use cases (e.g. Keras RNN), `element_shape` is usually
          // a constant, and the first dimension of `element_shape` is usually
          // batch dimension. Currently TFLiteConverter always rewrite unknown
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    // special cases, it performs no deduction or arithmetic. While there
    // are known decision procedures for this, the ad hoc approach taken
    // by the facts table is effective for real code while remaining very
    // efficient.
    type factsTable struct {
    	// unsat is true if facts contains a contradiction.
    	//
    	// Note that the factsTable logic is incomplete, so if unsat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters_test.go

    				},
    			},
    		},
    		{
    			desc: "allocatable memory does not double-count hugepages reservations",
    			node: &v1.Node{
    				Status: v1.NodeStatus{
    					Capacity: v1.ResourceList{
    						// it's impossible on any real system to reserve 1 byte,
    						// but we just need to test that the setter does the math
    						v1.ResourceHugePagesPrefix + "test": *resource.NewQuantity(1, resource.BinarySI),
    					},
    				},
    			},
    			maxPods: 110,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top