Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,650 for Required (0.23 sec)

  1. src/os/types_windows.go

    	vol              uint32
    	idxhi            uint32
    	idxlo            uint32
    	appendNameToPath bool
    }
    
    // newFileStatFromGetFileInformationByHandle calls GetFileInformationByHandle
    // to gather all required information about the file handle h.
    func newFileStatFromGetFileInformationByHandle(path string, h syscall.Handle) (fs *fileStat, err error) {
    	var d syscall.ByHandleFileInformation
    	err = syscall.GetFileInformationByHandle(h, &d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    		switch lvl {
    		case rootLevel:
    			allErrs = append(allErrs, field.Required(fldPath.Child("type"), "must not be empty at the root"))
    		case itemLevel:
    			allErrs = append(allErrs, field.Required(fldPath.Child("type"), "must not be empty for specified array items"))
    		case fieldLevel:
    			allErrs = append(allErrs, field.Required(fldPath.Child("type"), "must not be empty for specified object fields"))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/policy/v1/types.go

    	// - InsufficientPods: The number of pods are either at or below the number
    	//                     required by the PodDisruptionBudget. No disruptions are
    	//                     allowed and the status of the condition will be False.
    	// - SufficientPods: There are more pods than required by the PodDisruptionBudget.
    	//                   The condition will be True, and the number of allowed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

        return connections.size
      }
    
      /**
       * Attempts to acquire a recycled connection to [address] for [connectionUser]. Returns the connection if it
       * was acquired, or null if no connection was acquired. The acquired connection will also be
       * given to [connectionUser] who may (for example) assign it to a [RealCall.connection].
       *
       * This confirms the returned connection is healthy before returning it. If this encounters any
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      CalibrationMethod calibration_method = 1;
    
      // Defines the parameters required for calibration. Parameters such as the
      // number of bins in the histogram and percentile belong to it.
      // MIN_MAX and AVERAGE_MIN_MAX don't require this parameter and methods
      // starting with HISTOGRAM require this parameter.
      CalibrationParameters calibration_parameters = 2;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

     */
    
    package org.gradle.api.tasks
    
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import spock.lang.Issue
    
    class DeferredTaskConfigurationIntegrationTest extends AbstractDeferredTaskDefinitionIntegrationTest {
        def "build logic can configure each task only when required"() {
            buildFile << '''
                tasks.register("task1", SomeTask).configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. pkg/kube/inject/inject.go

    			}
    		}
    	}
    
    	var required bool
    	switch config.Policy {
    	default: // InjectionPolicyOff
    		log.Errorf("Illegal value for autoInject:%s, must be one of [%s,%s]. Auto injection disabled!",
    			config.Policy, InjectionPolicyDisabled, InjectionPolicyEnabled)
    		required = false
    	case InjectionPolicyDisabled:
    		if useDefault {
    			required = false
    		} else {
    			required = inject
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/authentication_test.go

    			},
    			expectErr: "authentication-config file and oidc-* flags are mutually exclusive",
    		},
    		{
    			name: "authentication-config file, --oidc-required-claim is set",
    			args: []string{
    				"--authentication-config=configfile",
    				"--oidc-required-claim=foo=bar",
    			},
    			expectErr: "authentication-config file and oidc-* flags are mutually exclusive",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            registry.getModule("gradle-my-testing")
            then:
            def e = thrown(IllegalArgumentException)
            e.message == "Cannot find JAR 'junit-platform-basics-1.8.3.jar' required by module 'gradle-my-testing' using classpath."
        }
    
        def "requires no additional module classpath when run from distribution"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top