Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 244 for addOption (0.37 sec)

  1. src/runtime/lockrank.go

    package runtime
    
    type lockRank int
    
    // Constants representing the ranks of all non-leaf runtime locks, in rank order.
    // Locks with lower rank must be taken before locks with higher rank,
    // in addition to satisfying the partial order in lockPartialOrder.
    // A few ranks allow self-cycles, which are specified in lockPartialOrder.
    const (
    	lockRankUnknown lockRank = iota
    
    	lockRankSysmon
    	lockRankScavenge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    //      quantized representation may be acceptable.
    //
    // Especially early in transformation, it is common to have pairs of
    // qcast/dcast at points where a transition to a quantized type is
    // required. In addition, it is also common to have an identity qcast
    // (where the operand and result type are not quantized) at all points where
    // it is legal to use a quantized representation (but is not known to be
    // acceptable).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            when:
            source api: ["class B { String change; }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.noneRecompiled()
        }
    
        def "addition of unused class in upstream project does not rebuild"() {
            source api: ["class A {}", "class B { private final static int x = 1; }"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         *         This map can contain a 'classifier' and an 'extension' entry to further configure the constructed artifact.</li>
         * </ul>
         *
         * The following example demonstrates the addition of various custom artifacts.
         * <pre class='autoTested'>
         * plugins {
         *     id 'maven-publish'
         * }
         *
         * task sourceJar(type: Jar) {
         *   archiveClassifier = "sources"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. common/config/.golangci.yml

          - prefix(istio.io/) # Groups all imports with the specified Prefix.
      gocritic:
        # Disable all checks.
        # Default: false
        disable-all: true
        # Which checks should be enabled in addition to default checks. Since we don't want
        # all of the default checks, we do the disable-all first.
        enabled-checks:
          - appendCombine
          - argOrder
          - assignOp
          - badCond
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    image::java-sourcesets-process-resources.png[]
    
    As before, the shaded boxes represent properties of the source set, which in this case comprises the locations of the resource files and where they are copied to.
    
    In addition to the `main` source set, the Java Library Plugin defines a `test` source set that represents the project's tests.
    This source set is used by the `test` task, which runs the tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    those terms (in addition to any explicit constraints in the file).
    
    Using GOOS=android matches build tags and files as for GOOS=linux
    in addition to android tags and files.
    
    Using GOOS=illumos matches build tags and files as for GOOS=solaris
    in addition to illumos tags and files.
    
    Using GOOS=ios matches build tags and files as for GOOS=darwin
    in addition to ios tags and files.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/types.go

    	// must be within the range [-1000, 1000].
    	OOMScoreAdj int32
    	// clusterDomain is the DNS domain for this cluster. If set, kubelet will
    	// configure all containers to search this domain in addition to the
    	// host's search domains.
    	ClusterDomain string
    	// clusterDNS is a list of IP addresses for a cluster DNS server. If set,
    	// kubelet will configure all containers to use this for DNS resolution
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/LinkedListMultimap.java

        extends AbstractMultimap<K, V> implements ListMultimap<K, V>, Serializable {
      /*
       * Order is maintained using a linked list containing all key-value pairs. In
       * addition, a series of disjoint linked lists of "siblings", each containing
       * the values for a specific key, is used to implement {@link
       * ValueForKeyIterator} in constant time.
       */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         *
         * @param initScriptFile The init scripts.
         */
        public void addInitScript(File initScriptFile) {
            initScripts.add(initScriptFile);
        }
    
        /**
         * Sets the list of init scripts to be run before the build starts. This list is in addition to the default init scripts.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top