Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 883 for greater (0.69 sec)

  1. android/guava/src/com/google/common/cache/Striped64.java

                Cell r = new Cell(x); // Optimistically create
                if (busy == 0 && casBusy()) {
                  boolean created = false;
                  try { // Recheck under lock
                    Cell[] rs;
                    int m, j;
                    if ((rs = cells) != null && (m = rs.length) > 0 && rs[j = (m - 1) & h] == null) {
                      rs[j] = r;
                      created = true;
                    }
                  } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (2)
  2. tensorflow/compiler/jit/xla_launch_util.h

    // Tensor with AsyncValueTensor; 3. Tensor with raw device mem pointer.
    // For case 3, we need to create a PjRtBuffer from the raw device mem pointer,
    // and we need to ensure the PjRtBuffer persists till XLA computation is
    // complete. Therefore we put the newly created PjRtBuffer into `owned_args`.
    // Caller is responsible to ensure `owned_args` lives till the end of XLA
    // computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/Stats.java

       * variance</a> of the values. If this dataset is a sample drawn from a population, this is an
       * unbiased estimator of the population variance of the population. The count must be greater than
       * one.
       *
       * <p>This is not guaranteed to return zero when the dataset consists of the same value multiple
       * times, due to numerical errors. However, it is guaranteed never to return a negative result.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Striped64.java

                Cell r = new Cell(x); // Optimistically create
                if (busy == 0 && casBusy()) {
                  boolean created = false;
                  try { // Recheck under lock
                    Cell[] rs;
                    int m, j;
                    if ((rs = cells) != null && (m = rs.length) > 0 && rs[j = (m - 1) & h] == null) {
                      rs[j] = r;
                      created = true;
                    }
                  } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    				t.Errorf("expected admit duration to be equal to 0 got %q", wd.MutatingWebhookTracker.GetLatency())
    			}
    			if wd.ValidatingWebhookTracker.GetLatency() < test.ExpectedDurationMax {
    				t.Errorf("expected validate duraion to be greater or equal to %q got %q", test.ExpectedDurationMax, wd.ValidatingWebhookTracker.GetLatency())
    			}
    		})
    	}
    }
    
    // TestValidatePanicHandling tests that panics should not escape the dispatcher
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authorization.go

    	}
    
    	if o.WebhookRetryBackoff != nil && o.WebhookRetryBackoff.Steps <= 0 {
    		allErrors = append(allErrors, fmt.Errorf("number of webhook retry attempts must be greater than 0, but is: %d", o.WebhookRetryBackoff.Steps))
    	}
    
    	return allErrors
    }
    
    // AddFlags returns flags of authorization for a API Server
    func (o *BuiltInAuthorizationOptions) AddFlags(fs *pflag.FlagSet) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pilot/pkg/model/context_test.go

    		Minor int
    		Patch int
    	}
    	type args struct {
    		inv *model.IstioVersion
    	}
    	tests := []struct {
    		name   string
    		fields fields
    		args   args
    		want   int
    	}{
    		{
    			name:   "greater major",
    			fields: fields{Major: 2, Minor: 1, Patch: 1},
    			args:   args{&model.IstioVersion{Major: 1, Minor: 2, Patch: 1}},
    			want:   1,
    		},
    		{
    			name:   "equal at minor",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

            resource.assertExists()
            files[0].assertExists()
            files[1].assertExists()
        }
    
        def "does not clean up resources and files that were recently used from caches when retention is configured greater than default"() {
            given:
            buildscriptWithDependency(snapshotModule)
            withDownloadedResourcesRetentionInDays(DEFAULT_MAX_AGE_IN_DAYS_FOR_DOWNLOADED_CACHE_ENTRIES * 2)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    			numEventsToFill: 5,
    		},
    		{
    			name:            "equal to bufferSize events to put in buffer",
    			numEventsToFill: bufferSize,
    		},
    		{
    			name:            "greater than bufferSize events to put in buffer",
    			numEventsToFill: bufferSize + 5,
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			events := generateEvents(0, c.numEventsToFill)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/generated.proto

      // +listType=atomic
      repeated string usages = 5;
    
      // username contains the name of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +optional
      optional string username = 2;
    
      // uid contains the uid of the user that created the CertificateSigningRequest.
      // Populated by the API server on creation and immutable.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top