Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 163 for addOption (0.47 sec)

  1. src/cmd/compile/internal/dwarfgen/dwinl.go

    	// based on variable name.
    	//
    	// If a variable was not produced by an inline and its containing
    	// function was inlined, then we need to assign a child index
    	// based on the order of vars in the abstract function (in
    	// addition, those vars that don't appear in the abstract
    	// function, such as "~r1", are flagged as such).
    	//
    	// If a variable was produced by an inline, then we locate it in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    ====
    
    == Generating and updating dependency locks
    
    In order to generate or update lock state, you specify the `--write-locks` command line argument in addition to the normal tasks that would trigger configurations to be resolved.
    This will cause the creation of lock state for each resolved configuration in that build execution.
    Note that if lock state existed previously, it is overwritten.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm.go

    	i = ((i << 1) & 0xa) | ((i >> 1) & 0x5)
    	return i
    }
    
    // gcmAdd adds two elements of GF(2¹²⁸) and returns the sum.
    func gcmAdd(x, y *gcmFieldElement) gcmFieldElement {
    	// Addition in a characteristic 2 field is just XOR.
    	return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
    }
    
    // gcmDouble returns the result of doubling an element of GF(2¹²⁸).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      sampleIDs.forEach(setSampleIndexLink);
    
      // Bind action to button with specified id.
      function addAction(id, action) {
        const btn = document.getElementById(id);
        if (btn != null) {
          btn.addEventListener('click', action);
          btn.addEventListener('touchstart', action);
        }
      }
    
      addAction('details', handleDetails);
      initConfigManager();
    
      search.addEventListener('input', handleSearch);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    | Based on the scheme in use
    |===
    
    [[sub:jvm_default_attributes]]
    === JVM ecosystem specific attributes
    
    In addition to the ecosystem independent attributes defined above, the JVM ecosystem adds the following attribute:
    
    .JVM ecosystem standard component attributes
    [%header%autowidth,compact]
    |===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K 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-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)
  9. 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)
  10. 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)
Back to top