Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 780 for associateBy (0.39 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  In addition, the suite holds a pointer to the head of the linked 
     *  list of associated CU_Test objects.  Finally, pointers to the next 
     *  and previous suites in the linked list are maintained.<br /><br />
     *
     *  Generally, the linked list includes suites which are associated with 
     *  each other in a CU_TestRegistry.  As a result, suites are run in the 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  2. src/context/context.go

    	// or DeadlineExceeded if the context's deadline passed.
    	// After Err returns a non-nil error, successive calls to Err return the same error.
    	Err() error
    
    	// Value returns the value associated with this context for key, or nil
    	// if no value is associated with key. Successive calls to Value with
    	// the same key returns the same result.
    	//
    	// Use context values only for request-scoped data that transits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  3. pkg/apis/networking/types.go

    	Items []Ingress
    }
    
    // IngressSpec describes the Ingress the user wishes to exist.
    type IngressSpec struct {
    	// ingressClassName is the name of the IngressClass cluster resource. The
    	// associated IngressClass defines which controller will implement the
    	// resource. This replaces the deprecated `kubernetes.io/ingress.class`
    	// annotation. For backwards compatibility, when that annotation is set, it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/service.go

    // with it, such that the DNS queries for the FQDN resolves to the virtual
    // IP address (a load balancer IP).
    //
    // E.g., in kubernetes, a service foo is associated with
    // foo.default.svc.cluster.local hostname, has a virtual IP of 10.0.1.1 and
    // listens on ports 80, 8080
    type Service struct {
    	// Attributes contains additional attributes associated with the service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

     * {@code asMap} has a few subtleties. As long as the set of keys remains unchanged, adding or
     * removing mappings does not affect the key iteration order. However, if you remove all values
     * associated with a key and then add the key back to the multimap, that key will come last in the
     * key iteration order.
     *
     * <p>The multimap does not store duplicate key-value pairs. Adding a new key-value pair equal to an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/LinkedHashMultimap.java

     * {@code asMap} has a few subtleties. As long as the set of keys remains unchanged, adding or
     * removing mappings does not affect the key iteration order. However, if you remove all values
     * associated with a key and then add the key back to the multimap, that key will come last in the
     * key iteration order.
     *
     * <p>The multimap does not store duplicate key-value pairs. Adding a new key-value pair equal to an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_device.h

      // Intra-op threads to spawn (from SessionOptions).
      const int intra_op_parallelism_threads_;
      // Memory allocator associated with this device.
      Allocator* xla_allocator_ TF_GUARDED_BY(mu_) = nullptr;  // Not owned.
      std::unique_ptr<AsyncValueAllocator> pjrt_allocator_ TF_GUARDED_BY(mu_);
    
      // Stream associated with this device. Operations enqueued on this
      // stream are executed on the device. Operations include data
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. pkg/apis/certificates/types.go

    //
    // ClusterTrustBundle objects are considered to be readable by any authenticated
    // user in the cluster.
    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer.
    type ClusterTrustBundle struct {
    	metav1.TypeMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. pkg/model/proxy.go

    	// IstioVersion specifies the Istio version associated with the proxy
    	IstioVersion string `json:"ISTIO_VERSION,omitempty"`
    
    	// IstioRevision specifies the Istio revision associated with the proxy.
    	// Mostly used when istiod requests the upstream.
    	IstioRevision string `json:"ISTIO_REVISION,omitempty"`
    
    	// Labels specifies the set of workload instance (ex: k8s pod) labels associated with this node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users_test.go

    	if err != nil {
    		c.Fatalf("error listing: %v", err)
    	}
    	v, ok := usersMap[accessKey]
    	if !ok {
    		c.Fatalf("user not listed: %s", accessKey)
    	}
    	c.Assert(v.Status, madmin.AccountEnabled)
    
    	// 3. Associate policy and check that user can access
    	err = s.adm.SetPolicy(ctx, "readwrite", accessKey, false)
    	if err != nil {
    		c.Fatalf("unable to set policy: %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top