Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 896 for JSpecify (0.18 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutionSpec.groovy

        }
    
        def "can specify target module"() {
            when:
            details.useTarget("org:bar:2.0")
    
            then:
            details.target instanceof ModuleComponentSelector
            details.target.toString() == 'org:bar:2.0'
            details.updated
            details.ruleDescriptors == [SELECTED_BY_RULE]
        }
    
        def "can specify custom selection reason"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/TestProjects.groovy

            def jvmArgs = gradleProperties.getProperty("org.gradle.jvmargs")?.split(' ')
            if (!jvmArgs.find { it.startsWith("-Xmx") }) {
                throw new IllegalArgumentException("Test project needs to specify -Xmx in gradle.properties. org.gradle.jvmargs = ${jvmArgs?.join(' ')}")
            }
            verifyGradlePropertiesSettingSpecified(gradleProperties, "org.gradle.parallel")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. pkg/apis/autoscaling/validation/validation.go

    	}
    
    	return allErrs
    }
    
    func validateContainerResourceSource(src *autoscaling.ContainerResourceMetricSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if len(src.Name) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("name"), "must specify a resource name"))
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:58:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecScope.kt

            plugins.alias(notation)
    }
    
    
    /**
     * Specify the version of the plugin to depend on.
     *
     * Infix version of [PluginDependencySpec.version].
     */
    infix fun PluginDependencySpec.version(version: String?): PluginDependencySpec = version(version)
    
    
    /**
     * Specify the version of the plugin to depend on.
     *
     * Infix version of [PluginDependencySpec.version].
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/ipvs.go

    	Port      uint16
    	Scheduler string
    	Flags     ServiceFlags
    	Timeout   uint32
    }
    
    // ServiceFlags is used to specify session affinity, ip hash etc.
    type ServiceFlags uint32
    
    const (
    	// FlagPersistent specify IPVS service session affinity
    	FlagPersistent = 0x1
    	// FlagHashed specify IPVS service hash flag
    	FlagHashed = 0x2
    	// FlagSourceHash enables IPVS service hashing on source port and source IP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization.td

          "bool", "RequireAsymmetricQuantizeInputsAttr",
          (ins), [{}], [{return false;}]>,
      ];
    }
    
    // Specify this trait if the op has a fixed output value range.
    class FixedResultScale<QuantizedType qt> : NativeOpTrait<!strconcat(
      "quant::FixedResult", qt.name, "Scale<", qt.asTraitArgsStr, ">::Impl")>;
    
    // Specify this trait if the bias-th input of the op is a bias input, which
    // needs a scale based on the scales of op1 and op2.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/groovy/settings.gradle

    rootProject.name = 'maven-specify-relocation'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 64 bytes
    - Viewed (0)
  8. configure.py

    
    def setup_python(environ_cp):
      """Setup python related env variables."""
      # Get PYTHON_BIN_PATH, default is the current running python.
      default_python_bin_path = sys.executable
      ask_python_bin_path = ('Please specify the location of python. [Default is '
                             '{}]: ').format(default_python_bin_path)
      while True:
        python_bin_path = get_from_env_or_user_or_default(environ_cp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/kotlin/settings.gradle.kts

    rootProject.name = "maven-specify-relocation"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 65 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    [[sec:specifying_what_to_sign]]
    == Specifying what to sign
    
    As well as configuring how things are to be signed (i.e. the signatory configuration), you must also specify what is to be signed. The Signing Plugin provides a DSL that allows you to specify the tasks and/or configurations that should be signed.
    
    [[sec:signing_publications]]
    === Signing Publications
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
Back to top