Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 7,992 for notC (0.53 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. pkg/util/filesystem/util_windows.go

    	socketDialTimeout = 4 * time.Second
    )
    
    // IsUnixDomainSocket returns whether a given file is a AF_UNIX socket file
    // Note that due to the retry logic inside, it could take up to 4 seconds
    // to determine whether or not the file path supplied is a Unix domain socket
    func IsUnixDomainSocket(filePath string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/ProjectParallelExecutionController.java

        /**
         * Indicate that project execution may happen.
         *
         * <p>Note: this must be called prior to any projects being created for a build tree.</p>
         */
        void startProjectExecution(boolean parallel);
    
        /**
         * Indicate that project execution is complete.
         *
         * <p>Note: this must be called after all projects for the build tree have been discarded.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. 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)
Back to top