Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 240 for addOption (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

        /**
         * Test two projects (:a and :b) depending on plugins from the same two included builds (:plugin-1 and :plugin-2)
         * which in turn depend on a plugin from another included build (:plugin-0).
         *
         * In addition, projects :a and :b also depend on the :plugins build for the model building plugin.
         **/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu.go

    var CacheLineSize uintptr = CacheLinePadSize
    
    // The booleans in X86 contain the correspondingly named cpuid feature bit.
    // HasAVX and HasAVX2 are only set if the OS does support XMM and YMM registers
    // in addition to the cpuid feature bit being set.
    // The struct is padded to avoid false sharing.
    var X86 struct {
    	_            CacheLinePad
    	HasAES       bool
    	HasADX       bool
    	HasAVX       bool
    	HasAVX2      bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	StopCh <-chan struct{}
    	// Context gets cancelled when the server stops.
    	context.Context
    }
    
    // PostStartHookProvider is an interface in addition to provide a post start hook for the api server
    type PostStartHookProvider interface {
    	PostStartHook() (string, PostStartHookFunc, error)
    }
    
    type postStartHookEntry struct {
    	hook PostStartHookFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    Gradle will periodically clean up the local build cache directory by removing entries that have not been used recently to conserve disk space.
    
    == Step 4. Understanding Remote Caching
    In addition to the local build cache present on a developer's machine, Gradle can make use of remote build caches which can be used by multiple developers.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

        @SerialName("configuringLambdaArgument")
        data class DefaultConfiguringLambdaArgument(override val objectType: DataTypeRef) : ConfigureAccessor.ConfiguringLambdaArgument
    
        // TODO: configure all elements by addition key?
        // TODO: Do we want to support configuring external objects?
    }
    
    
    @Serializable
    data class DefaultFqName(override val packageName: String, override val simpleName: String) : FqName {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

                }
                return map;
            }
    
            public void nodeRemoved(ModelNodeInternal node) {
                // This could be more efficient; assume that removal happens much less often than addition
                for (ModelNode.State state : ModelNode.State.values()) {
                    Map<String, List<RuleBinder>> byState = getByState(state);
                    List<RuleBinder> remove = byState.remove(node.getPath().toString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    	KeepAlive(filename)
    	if handle != 0 {
    		err = 0
    	}
    	return
    }
    
    // golang.org/x/sys linknames syscall.loadlibrary
    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    //go:linkname syscall_loadlibrary syscall.loadlibrary
    func syscall_loadlibrary(filename *uint16) (handle, err uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

        }
    
        /**
         * Returns the ClassLoader that contains the Java platform classes only. This is different to {@link ClassLoader#getSystemClassLoader()}, which includes the application classes in addition to the
         * platform classes.
         */
        public static ClassLoader getPlatformClassLoader() {
            return ClassLoader.getSystemClassLoader().getParent();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Replace quantization candidates with composite functions into the module.";
      let description = [{
        Mark frequent fusible patterns as functions for quantization targets.
        In addition to brining performance benefits by reducing q/dq op overhead in non-full quantization,
        this brings higher accuracy by keeping a smaller range when quantizing ops
        that disperse values. (ex: convolution, dot_general)
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Gradle enforces isolation of instances of `ComponentMetadataRule`.
    This means that all parameters must be `Serializable` or known Gradle types that can be isolated.
    
    In addition, Gradle services can be injected into your `ComponentMetadataRule`.
    Because of this, the moment you have a constructor, it must be annotated with `@javax.inject.Inject`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top