Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for cherries (0.17 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            true
        }
    
        private validate(Throwable throwable) {
            if (dist.version != GradleVersion.current()) {
                return
            }
    
            // Verify that the exception carries the calling thread's stack information
            def currentThreadStack = Thread.currentThread().stackTrace as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

     * that is mutable and that changes over time.
     * </p>
     *
     * <p>
     * A provider may represent a task output. Such a provider carries information about the task producing its value. When
     * this provider is attached to an input of another task, Gradle will automatically determine the task dependencies based
     * on this connection.
     * </p>
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

      kUnaryOp,         // Unary ops have one min/max attr.
      kBinaryOp,        // Binary ops have lhs/rhs attr.
      kQuantizationOp,  // Quantization ops have input/output attr.
    };
    
    // For each op type, the following axis carries axis information:
    // kDynamicRangeOp: rhs_quantization_axis will carry axis information.
    // kUnaryOp: quantization_axis will carry axis information.
    // kBinaryOp: Among {lhs, rhs, output}_quantization_axis, only check rhs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. pkg/proxy/endpointschangetracker.go

    	"k8s.io/kubernetes/pkg/proxy/metrics"
    )
    
    var supportedEndpointSliceAddressTypes = sets.New[discovery.AddressType](
    	discovery.AddressTypeIPv4,
    	discovery.AddressTypeIPv6,
    )
    
    // EndpointsChangeTracker carries state about uncommitted changes to an arbitrary number of
    // Endpoints, keyed by their namespace and name.
    type EndpointsChangeTracker struct {
    	// lock protects lastChangeTriggerTimes
    	lock sync.Mutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/offline-mode.apt

      a server container in-JVM, running tests against it, and shutting it down.
    
    ** SCM mojos
    
      See below for discussion on SCM-related operations. Any mojo which
      carries out some analysis or other interaction with a SCM system
      will likely be unavailable when in offline mode.
    
    
    * Implications for Subsystems
    
    ** Maven-Wagon
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            // We are preserving the original value if it had to be created,
            // because it carries information required by dependency resolution
            // to ensure project artifacts are actually created the first time around.
            // When the value is loaded from the store, the dependency information is lost.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. pkg/config/model.go

    	//
    	// The lifetime of an object of a particular revision depends on the underlying data store.
    	// The data store may compactify old revisions in the interest of storage optimization.
    	//
    	// An empty revision carries a special meaning that the associated object has
    	// not been stored and assigned a revision.
    	ResourceVersion string `json:"resourceVersion,omitempty"`
    
    	// CreationTimestamp records the creation time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

         * </ul>
         *
         * Any combination that doesn't follow given rules will throw an exception.
         *
         * @param classPath the classpath to process
         * @return the classpath that carries the instrumentation mappings if needed
         */
        public static ClassPath handleInstrumentingArtifactTransform(List<File> classPath) {
            if (classPath.isEmpty()) {
                return DefaultClassPath.of(classPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. pkg/security/security.go

    		if meta, ok := metadata.FromIncomingContext(ac.GrpcContext); ok {
    			return meta.Get(header)
    		}
    	} else if ac.Request != nil {
    		return ac.Request.Header.Values(header)
    	}
    	return nil
    }
    
    // Caller carries the identity and authentication source of a caller.
    type Caller struct {
    	AuthSource AuthSource
    	Identities []string
    
    	KubernetesInfo KubernetesInfo
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. internal/config/config.go

    func RegisterDefaultKVS(kvsMap map[string]KVS) {
    	for subSys, kvs := range kvsMap {
    		DefaultKVS[subSys] = kvs
    	}
    }
    
    // HelpSubSysMap - help for all individual KVS for each sub-systems
    // also carries a special empty sub-system which dumps
    // help for each sub-system key.
    var HelpSubSysMap = map[string]HelpKVS{}
    
    // RegisterHelpSubSys - this function saves
    // input help KVS for each sub-system globally,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top