Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,069 for simply (0.11 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/internal/operations/TestBuildOperationExecutor.java

     * limitations under the License.
     */
    
    package org.gradle.internal.operations;
    
    import org.gradle.api.Action;
    
    import java.util.List;
    
    /**
     * A BuildOperationExecutor for tests.
     * Simply execute given operations, does not support current/parent operations.
     */
    public class TestBuildOperationExecutor implements BuildOperationExecutor {
    
        private final TestBuildOperationRunner runner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_pre_calibration_component.cc

    };
    
    void TestPreCalibrationComponentPass::runOnOperation() {
      ModuleOp module_op = getOperation();
      MLIRContext& ctx = getContext();
    
      // Simply runs the PreCalibrationComponent with a default configuration.
      PreCalibrationComponent component(&ctx);
      QuantizationConfig quantization_config{};
      quantization_config.mutable_static_range_ptq_preset();
      quantization_config = ExpandPresets(PopulateDefaults(quantization_config));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 21:41:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationInternal.java

         * Add a derived artifact for the supplied original artifact.
         *
         * <p>Derived artifacts are not mandatory, i.e. when the supplied file does not exist when this
         * publication is about to be published, they will simply be omitted from the file transfer.
         *
         * <p>Currently, the only known use case for derived artifacts is adding signature files
         * created by the signing plugin.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

     * of project dependencies. This optimizes module loading during runtime, as we will only load external
     * modules that are not loaded transitively by other project modules.
     *
     * We perform this filtering, since if we simply include all external dependencies, regardless of whether
     * they are already loaded transitively, there is a measurable performance impact during module-loading.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FixedExclusiveModeCrossProcessCacheAccess.java

    import static org.gradle.cache.FileLockManager.LockMode.Exclusive;
    
    /**
     * A {@link CrossProcessCacheAccess} implementation used when a cache is opened with an exclusive lock that is held until the cache is closed. This implementation is simply a no-op for these methods.
     */
    public class FixedExclusiveModeCrossProcessCacheAccess extends AbstractCrossProcessCacheAccess {
        private final String cacheDisplayName;
        private final File lockTarget;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. releasenotes/notes/external-name-on.yaml

            an external name at another in-cluster Service (for example, `example.default.svc.cluster.local`), mTLS would not be used.
    
          `ExternalName` support has been revamped to fix these problems. `ExternalName`s are now simply treated as aliases.
          Wherever we would match `Host: <concrete service>` we additionally will match `Host: <external name service>`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:58:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. Makefile

    include out/.env
    # An export free of arguments in a Makefile places all variables in the Makefile into the
    # environment. This behavior may be surprising to many that use shell often, which simply
    # displays the existing environment
    export
    
    export GOBIN ?= $(GOPATH)/bin
    include Makefile.core.mk
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filters/mux_discovery_complete.go

    			req = req.WithContext(context.WithValue(req.Context(), muxAndDiscoveryIncompleteKey, "MuxAndDiscoveryInstallationNotComplete"))
    		}
    		handler.ServeHTTP(w, req)
    	})
    }
    
    // isClosed is a convenience function that simply check if the given chan has been closed
    func isClosed(ch <-chan struct{}) bool {
    	select {
    	case <-ch:
    		return true
    	default:
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 21 13:25:33 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  9. src/runtime/internal/sys/nih.go

    //
    // The last point is the real benefit of NotInHeap. The runtime uses
    // it for low-level internal structures to avoid memory barriers in the
    // scheduler and the memory allocator where they are illegal or simply
    // inefficient. This mechanism is reasonably safe and does not compromise
    // the readability of the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/readme.md

        
    This will result in an invocation as if no script is present and you'll be puzzled why nothing you wrote in the script is happening.
    The reason is that Kotlin DSL was introduced in Gradle 5.0. Older Gradle versions simply ignore Kotlin scripts.
    The solution is to use a `groovy` script since it works on all Gradle Versions. 
    
    
    # Adding new progress event
    
    * project `build-events`
      * `org.gradle.internal.build.event.types` 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 21:50:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top