Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 7,349 for notC (0.06 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

     */
    public interface ComponentGraphResolveState {
        /**
         * A unique id for this component within the current build tree. Note that this id is not stable across Gradle invocations.
         */
        long getInstanceId();
    
        /**
         * The component identifier for this component. This identifier is stable but may not be unique.
         */
        ComponentIdentifier getId();
    
        /**
         * The immutable metadata for this component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/podresources/client.go

    	"k8s.io/kubelet/pkg/apis/podresources/v1"
    	"k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    )
    
    // Note: Consumers of the pod resources API should not be importing this package.
    // They should copy paste the function in their project.
    
    // GetV1alpha1Client returns a client for the PodResourcesLister grpc service
    // Note: This is deprecated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValue.java

         */
        Try<T> getValue() throws IllegalStateException;
    
        /**
         * Returns true if this value is already calculated.
         * Note that some other thread may currently be calculating the value even if this method returns false.
         */
        boolean isFinalized();
    
        /**
         * Calculates the value, if not already calculated. Collects any exception and does not rethrow them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/destination_rule.go

    			// concatenate both of them -- essentially add subsets from one to other.
    			// Note: we only add the subsets and do not overwrite anything else like exportTo or top level
    			// traffic policies if they already exist
    			for _, subset := range rule.Subsets {
    				if !existingSubset.Contains(subset.Name) {
    					// if not duplicated, append
    					mergedRule.Subsets = append(mergedRule.Subsets, subset)
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    // (nil, nil).
    func GetBuildID(f *elf.File) ([]byte, error) {
    	findBuildID := func(notes []elfNote) ([]byte, error) {
    		var buildID []byte
    		for _, note := range notes {
    			if note.Name == "GNU" && note.Type == noteTypeGNUBuildID {
    				if buildID == nil {
    					buildID = note.Desc
    				} else {
    					return nil, fmt.Errorf("multiple build ids found, don't know which to use")
    				}
    			}
    		}
    		return buildID, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. internal/bucket/versioning/versioning.go

    		return false
    	}
    
    	if prefix == "" {
    		return true
    	}
    	if v.ExcludeFolders && strings.HasSuffix(prefix, "/") {
    		return false
    	}
    
    	for _, sprefix := range v.ExcludedPrefixes {
    		// Note: all excluded prefix patterns end with `/` (See Validate)
    		sprefix.Prefix += "*"
    
    		if matched := wildcard.MatchSimple(sprefix.Prefix, prefix); matched {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    If you need to branch depending on the presence of the property, you can also use `String?` and check for `null`.
    
    [.multi-language-text.lang-groovy]
    Note that if a Project property has a dot in its name, using the dynamic Groovy names is not possible.
    You have to use the API or the dynamic array notation instead.
    
    *Example 2:* Reading project properties for consumption at execution time:
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/Closer.java

     *   // provided here, e.g. throw closer.rethrow(e, CheckedException.class);
     *   throw closer.rethrow(e);
     * } finally {
     *   closer.close();
     * }
     * }</pre>
     *
     * <p>Note that this try-catch-finally block is not equivalent to a try-catch-finally block using
     * try-with-resources. To get the equivalent of that, you must wrap the above code in <i>another</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

          if (common_dim == ShapedType::kDynamic) {
            common_dim = dim;
          } else if (common_dim != dim) {
            // If mask_one_dim is true, do not emit an error if this is the only
            // dimension with mismatches. Note down the dimension to mask it from
            // the following types.
            if (mask_one_dim && dim_to_mask == ShapedType::kDynamic) {
              dim_to_mask = i;
              continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    // Note that the mark-control-plane phase is left out, not needed, and no token is created as that doesn't belong to the upgrade
    func PerformPostUpgradeTasks(client clientset.Interface, cfg *kubeadmapi.InitConfiguration, patchesDir string, dryRun bool, out io.Writer) error {
    	var errs []error
    
    	// Upload currently used configuration to the cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top