Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 244 for addOption (0.18 sec)

  1. pkg/scheduler/apis/config/types.go

    	// global PercentageOfNodesToScore will be used.
    	PercentageOfNodesToScore *int32
    
    	// Plugins specify the set of plugins that should be enabled or disabled.
    	// Enabled plugins are the ones that should be enabled in addition to the
    	// default plugins. Disabled plugins are any of the default plugins that
    	// should be disabled.
    	// When no enabled or disabled plugin is specified for an extension point,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Joiner.java

      }
    
      /**
       * An object that joins map entries in the same manner as {@code Joiner} joins iterables and
       * arrays. Like {@code Joiner}, it is thread-safe and immutable.
       *
       * <p>In addition to operating on {@code Map} instances, {@code MapJoiner} can operate on {@code
       * Multimap} entries in two distinct modes:
       *
       * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K 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/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/JvmPluginsHelper.java

            configureAnnotationProcessorPath(sourceSet, sourceDirectorySet, options, target);
        }
    
        /**
         * Configures {@code compileTask} to compile against {@code sourceSet}'s compile classpath
         * in addition to the outputs of the java compilation, as specified by {@link SourceSet#getJava()}
         *
         * @param compileTask The task to configure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/tasks/IvyDescriptorFileGenerator.java

                model.artifacts.add(((IvyArtifactInternal) ivyArtifact).asNormalisedArtifact());
            }
    
            XmlTransformer xmlTransformer = new XmlTransformer();
            xmlTransformer.addAction(descriptor.getXmlAction());
            if (descriptor.getWriteGradleMetadataMarker().get()) {
                xmlTransformer.addFinalizer(SerializableLambdas.action(IvyDescriptorFileGenerator::insertGradleMetadataMarker));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    Gradle manages this distinction via the <<swift_library_plugin.adoc#swift_library_plugin,Swift Library Plugin>>, which introduces an _api_ configuration in addition to the _implementation_ once covered in this chapter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top