Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 780 for associateBy (0.23 sec)

  1. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

         *   <li>If this field's value == null because it originally belonged to another thread and that
         *       thread cleared it, we still know that it's not associated with our thread
         *   <li>If this field's value == null because it was associated with our thread and was
         *       cleared, we know that we're not executing inline any more
         * </ul>
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

         *   <li>If this field's value == null because it originally belonged to another thread and that
         *       thread cleared it, we still know that it's not associated with our thread
         *   <li>If this field's value == null because it was associated with our thread and was
         *       cleared, we know that we're not executing inline any more
         * </ul>
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

        Each sample in `repr_ds` is serialized as `RepresentativeDataSample`.
    
        Args:
          repr_ds: `RepresentativeDataset` to save.
          signature_def_key: The signature def key associated with `repr_ds`.
    
        Returns:
          a RepresentativeDatasetFile instance contains the path to the saved file.
    
        Raises:
          KeyError: If the set of input keys in the dataset samples doesn't match
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.yaml

            type: string
    
      - name: "ConflictingMeshGatewayVirtualServiceHosts"
        code: IST0109
        level: Error
        description: "Conflicting hosts on VirtualServices associated with mesh gateway"
        template: "The VirtualServices %s associated with mesh gateway define the same host %s which can lead to undefined behavior. This can be fixed by merging the conflicting VirtualServices into a single resource."
        args:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/resolver.go

    	// associate methods with receiver base type name where possible.
    	// Ignore methods that have an invalid receiver. They will be
    	// type-checked later, with regular functions.
    	if methods != nil {
    		check.methods = make(map[*TypeName][]*Func)
    		for i := range methods {
    			m := &methods[i]
    			// Determine the receiver base type and associate m with it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. src/go/types/resolver.go

    	return nil
    }
    
    // collectObjects collects all file and package objects and inserts them
    // into their respective scopes. It also performs imports and associates
    // methods with receiver base type names.
    func (check *Checker) collectObjects() {
    	pkg := check.pkg
    
    	// pkgImports is the set of packages already imported by any package file seen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/flags.h

    // is:
    // <number>: sets general and single_gpu setting to the provided number.
    // single-gpu(<number>): sets the single_gpu setting to the provided number.
    bool SetXlaAutoJitFlagFromFlagString(const string& value);
    
    // Flags associated with the XLA bridge's mark_for_compilation_pass module.
    struct MarkForCompilationPassFlags {
      XlaAutoJitFlag xla_auto_jit_flag;
    
      // Minimum number of operators in an XLA compilation. Ignored for operators
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. operator/pkg/helmreconciler/reconciler.go

    	return nil
    }
    
    // getCRName returns the name of the CR associated with h.
    func (h *HelmReconciler) getCRName() (string, error) {
    	if h.iop == nil {
    		return "", nil
    	}
    	objAccessor, err := meta.Accessor(h.iop)
    	if err != nil {
    		return "", err
    	}
    	return objAccessor.GetName(), nil
    }
    
    // getCRHash returns the cluster unique hash of the CR associated with h.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. src/runtime/mfinal.go

    		Gosched()
    	}
    	return false
    }
    
    // SetFinalizer sets the finalizer associated with obj to the provided
    // finalizer function. When the garbage collector finds an unreachable block
    // with an associated finalizer, it clears the association and runs
    // finalizer(obj) in a separate goroutine. This makes obj reachable again,
    // but now without an associated finalizer. Assuming that SetFinalizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

            when:
            property.getOrNull()
    
            then:
            def e2 = thrown(IllegalArgumentException)
            e2.message == 'Cannot get the value of a property of type java.lang.Boolean as the provider associated with this property returned a value of type java.lang.Integer.'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top