Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 650 for bundles (0.14 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/kotlin/settings.gradle.kts

    rootProject.name = "cacheable-bundle"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/tests/cacheableBundle-caching.out

    > Task :bundle FROM-CACHE...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 26 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

      // using a `spec.signerName=NAME` field selector.
      //
      // +optional
      optional string signerName = 1;
    
      // trustBundle contains the individual X.509 trust anchors for this
      // bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates.
      //
      // The data must consist only of PEM certificate blocks that parse as valid
      // X.509 certificates.  Each certificate must include a basic constraints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/variable.cc

          return errors::Internal("Returned replica handle has unsupported type.");
        }
        handles.push_back(reinterpret_cast<TensorHandle*>(handlePtr.release()));
      }
      TensorHandle* packed_handle;
      TF_RETURN_IF_ERROR(TensorHandle::CreatePackedHandle(
          std::move(handles), eager_ctx, &packed_handle));
      // The call to `CreatePackedHandle` incremented the handles' reference count,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 08 20:55:40 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  5. pkg/kube/controllers/queue_test.go

    )
    
    func TestQueue(t *testing.T) {
    	handles := atomic.NewInt32(0)
    	q := NewQueue("custom", WithReconciler(func(key types.NamespacedName) error {
    		handles.Inc()
    		return nil
    	}))
    	q.Add(types.NamespacedName{Name: "something"})
    	stop := make(chan struct{})
    	go q.Run(stop)
    	retry.UntilOrFail(t, q.HasSynced, retry.Delay(time.Microsecond))
    	assert.Equal(t, handles.Load(), 1)
    	q.Add(types.NamespacedName{Name: "something else"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 15 16:18:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/interfaces.go

    	// This is a noop on static providers.
    	AddListener(listener Listener)
    }
    
    // CAContentProvider provides ca bundle byte content
    type CAContentProvider interface {
    	Notifier
    
    	// Name is just an identifier.
    	Name() string
    	// CurrentCABundleContent provides ca bundle byte content. Errors can be
    	// contained to the controllers initializing the value. By the time you get
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. src/unique/handle_bench_test.go

    }
    
    func BenchmarkMakeManyMany(b *testing.B) {
    	benchmarkMake(b, testDataLarge[:])
    }
    
    func benchmarkMake(b *testing.B, testData []string) {
    	handles := make([]Handle[string], 0, len(testData))
    	for i := range testData {
    		handles = append(handles, Make(testData[i]))
    	}
    
    	b.ReportAllocs()
    	b.ResetTimer()
    
    	b.RunParallel(func(pb *testing.PB) {
    		i := 0
    		for pb.Next() {
    			_ = Make(testData[i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:14:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/audit_test.go

    		ctx := audit.WithAuditContext(context.Background())
    		ac := audit.AuditContextFrom(ctx)
    		ae := &ac.Event
    		ae.Level = auditinternal.LevelMetadata
    		auditHandler := WithAudit(handler)
    		a := attributes()
    
    		assert.Equal(t, handler.Handles(Create), auditHandler.Handles(Create), tcName+": WithAudit decorator should not effect the return value")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/groovy/settings.gradle

    rootProject.name = 'cacheable-bundle'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1alpha1/types.go

    	//
    	// +optional
    	SignerName string `json:"signerName,omitempty" protobuf:"bytes,1,opt,name=signerName"`
    
    	// trustBundle contains the individual X.509 trust anchors for this
    	// bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates.
    	//
    	// The data must consist only of PEM certificate blocks that parse as valid
    	// X.509 certificates.  Each certificate must include a basic constraints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top