Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 137 for leastOf (0.14 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <h2>More on {@code CacheBuilder}</h2>
     *
     * {@code CacheBuilder} builds caches with any combination of the following features:
     *
     * <ul>
     *   <li>automatic loading of entries into the cache
     *   <li>least-recently-used eviction when a maximum size is exceeded (note that the cache is
     *       divided into segments, each of which does LRU internally)
     *   <li>time-based expiration of entries, measured since last access or last write
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		require.NoError(t, testContext.WaitForReconcile(timeoutCtx, p))
    	}
    	require.NotEmpty(t, expectedParamsForNamespacedRequest, "all test cases should match at least one param")
    	require.ErrorContains(t, testContext.Plugin.Dispatch(context.TODO(), attributeRecord(nil, namespacedRequestObject, admission.Create), &admission.RuntimeObjectInterfaces{}), "Denied by policy")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

        }
    
      /**
       * The number of segments in this URL's path. This is also the number of slashes in this URL's
       * path, like 3 in `http://host/a/b/c`. This is always at least 1.
       *
       * | URL                  | `pathSize()` |
       * | :------------------- | :----------- |
       * | `http://host/`       | `1`          |
       * | `http://host/a/b/c`  | `3`          |
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    task inputs or outputs has changed since the last build. If they haven’t, Gradle can consider the task up to date and therefore skip executing its actions. Also note that incremental build won’t work unless a task has at least one task output, although tasks usually have at least one input as well.
    
    What this means for build authors is simple: you need to tell Gradle which task properties are inputs and which are outputs. If a task property affects the output, be sure to register it as an...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    }
    
    // toolenv returns the environment to use when building commands in cmd.
    //
    // This is a function instead of a variable because the exact toolenv depends
    // on the GOOS and GOARCH, and (at least for now) those are modified in place
    // to switch between the host and target configurations when cross-compiling.
    func toolenv() []string {
    	var env []string
    	if !mustLinkExternal(goos, goarch, false) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller_test.go

    	t.Helper()
    	// if actions are less the below logic will panic
    	if num > len(actions) {
    		t.Fatalf("len of actions %v is unexpected. Expected to be at least %v", len(actions), num+1)
    	}
    
    	for i := 0; i < num; i++ {
    		relativePos := len(actions) - i - 1
    		assert.Equal(t, verb, actions[relativePos].GetVerb(), "Expected action -%d verb to be %s", i, verb)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			wantErr: `failed to rotate DEK uid="panda", useSeed=false, ` +
    				`errState=got unexpected nil transformer, errGen=failed to validate annotations: annotations: Invalid value: "panda": ` +
    				`should be a domain with at least two segments separated by dots, statusKeyIDHash="sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b", ` +
    				`encryptKeyIDHash="", stateKeyIDHash="", expirationTimestamp=` + (time.Time{}).Format(time.RFC3339),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows.go

    // Only a limited number of callbacks may be created in a single Go process, and any memory allocated
    // for these callbacks is never released.
    // Between NewCallback and NewCallbackCDecl, at least 1024 callbacks can always be created.
    func NewCallback(fn any) uintptr {
    	return compileCallback(fn, true)
    }
    
    // NewCallbackCDecl converts a Go function to a function pointer conforming to the cdecl calling convention.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Allowed values are "Never" and "IfNeeded".
      //
      // Never: the webhook will not be called more than once in a single admission evaluation.
      //
      // IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
      // if the object being admitted is modified by other admission plugins after the initial webhook call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * If there are no explicit inclusions or exclusions, everything is included
    * If at least one inclusion is specified, only files and directories matching the patterns are included
    * Any exclusion pattern overrides any inclusions, so if a file or directory matches at least one exclusion pattern, it won't be included, regardless of the inclusion patterns
    
    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