Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for putrefy (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultRealizableTaskCollection.java

        }
    
        @Override
        public void visitDependencies(TaskDependencyResolveContext context) {
            // Task dependencies may be calculated more than once.
            // This guard is purely an optimisation.
            if (modelNode != null && realized.compareAndSet(false, true)) {
                modelNode.ensureAtLeast(ModelNode.State.SelfClosed);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

      pm.addPass(mlir::createCanonicalizerPass());
    }
    
    void AddStablehloOptimizationPasses(OpPassManager& pm) {
      // The current plan of record is to avoid doing optimization passes
      // on StableHLO, treating StableHLO purely as an input format, and do all
      // optimizations via MHLO passes that can be shared with the OpenXLA compiler.
      // Therefore, this function inserts a StableHLO <=> MHLO roundtrip to make
      // this happen.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/TestFailureMapper.java

         * A {@link Throwable} is supported if its class name, or any of its superclasses, is present in the list returned by {@link #getSupportedClassNames()}.
         * <p>
         * This method does the check purely by reflective means, and don't need the checked class to be on the classpath.
         *
         * @param cls the {@link Class} to checked
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/README.md

    So basically selecting the right binary for one of the above cases is a heuristic with 2 inputs:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    	}
    	span.AddEvent("Txn call succeeded")
    
    	if !txnResp.Succeeded {
    		return storage.NewKeyExistsError(preparedKey, 0)
    	}
    
    	if out != nil {
    		putResp := txnResp.Responses[0].GetResponsePut()
    		err = decode(s.codec, s.versioner, data, out, putResp.Header.Revision)
    		if err != nil {
    			span.AddEvent("decode failed", attribute.Int("len", len(data)), attribute.String("err", err.Error()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. pkg/istio-agent/health/health_check.go

    	"istio.io/istio/pilot/cmd/pilot-agent/status/ready"
    	"istio.io/istio/pkg/kube/apimirror"
    )
    
    type WorkloadHealthChecker struct {
    	config applicationHealthCheckConfig
    	prober Prober
    }
    
    // internal field purely for convenience
    type applicationHealthCheckConfig struct {
    	InitialDelay   time.Duration
    	ProbeTimeout   time.Duration
    	CheckFrequency time.Duration
    	SuccessThresh  int
    	FailThresh     int
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    Used for declaring implementation dependencies for all variants of the main component (see <<sec:swift_library_api_vs_implementation,API vs implementation section>>).
    This is where you should declare dependencies which are purely internal and not meant to be exposed to consumers of any variants.
    
    `main__Variant__Implementation` (e.g. `mainDebugImplementation` and `mainReleaseImplementation`) extends `implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                }
    
                if (!plugin.isExtensions()
                        && artifacts.size() == 1
                        && artifacts.get(0).getFile() != null) {
                    /*
                     * This is purely for backward-compat with 2.x where <extensions> consisting of a single artifact where
                     * loaded into the core and hence available to plugins, in contrast to bigger extensions that were
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector.java

     * latest strategy nor a ivy instance is set, an IllegalStateException will be thrown when calling
     * accept(). Note that it can't work with latest time strategy, cause no time is known for the
     * limits of the range. Therefore only purely revision based LatestStrategy can be used.
     */
    public class VersionRangeSelector extends AbstractVersionVersionSelector {
        private static final String OPEN_INC = "[";
    
        private static final String OPEN_EXC = "]";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    Used for declaring implementation dependencies for all variants of the main component (see <<sec:cpp_library_api_vs_implementation,API vs implementation section>>).
    This is where you should declare dependencies which are purely internal and not meant to be exposed to consumers of any variants.
    
    `main__Variant__Implementation` (e.g. `mainDebugImplementation` and `mainReleaseImplementation`) extends `implementation`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top