Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,297 for JSpecify (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	// PodNameKey is the key used in a user's "extra" to specify the pod name of
    	// the authenticating request.
    	PodNameKey = "authentication.kubernetes.io/pod-name"
    	// PodUIDKey is the key used in a user's "extra" to specify the pod UID of
    	// the authenticating request.
    	PodUIDKey = "authentication.kubernetes.io/pod-uid"
    	// NodeNameKey is the key used in a user's "extra" to specify the node name of
    	// the authenticating request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. 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)
  3. dbflute_fess/dfprop/basicInfoMap.dfprop

    # /---------------------------------------------------------------------------
    # basicInfoMap: (Required)
    #
    # The basic information for the tasks of DBFlute.
    # You should specify before your first generating.
    #
    # Core Properties:
    # o database: (Required)
    # o targetLanguage: (Required)
    # o targetContainer: (Required)
    # o packageBase: (Required)
    #
    # Adjustment Properties:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/ant/AntImportBuildIntegrationTest.groovy

                ant.importBuild('build.xml', '..')
            """, testDirectory.getParentFile(), "test-build")
        }
    
        @ToBeFixedForConfigurationCache(because = CONFIGURATION_CACHE_FAIL_REASON)
        def "user can specify transformer without specifying basedir"() {
            expect:
            "test basedir"("""
                ant.importBuild('build.xml') { antTaskName ->
                    'ant-' + antTaskName
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 26 09:29:29 UTC 2020
    - 3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top