Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,344 for valid (0.05 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            result.output.count(YES_NO_PROMPT) == 1
            outputContains("result = <default>")
    
            where:
            richConsole << VALID_BOOLEAN_CHOICES
        }
    
        def "can ask yes/no and handle valid input '#input' in interactive build"() {
            when:
            runWithInput("askYesNo", YES_NO_PROMPT, stdin)
    
            then:
            outputContains("result = $accepted")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    				MaxRequestBodyBytes:         10 * 1024 * 1024,
    				ShutdownDelayDuration:       -time.Second,
    			},
    			expectErr: "--shutdown-delay-duration can not be negative value",
    		},
    		{
    			name: "Test when HSTSHeaders is valid",
    			testOptions: &ServerRunOptions{
    				AdvertiseAddress:            netutils.ParseIPSloppy("192.168.10.10"),
    				CorsAllowedOriginList:       []string{"10.10.10.100", "10.10.10.200"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. pkg/apis/certificates/types.go

    	//   3. Signer whose configured minimum is longer than the requested duration
    	//
    	// The minimum valid value for expirationSeconds is 600, i.e. 10 minutes.
    	//
    	// +optional
    	ExpirationSeconds *int32
    
    	// usages specifies a set of usage contexts the key will be
    	// valid for.
    	// See:
    	//	https://tools.ietf.org/html/rfc5280#section-4.2.1.3
    	//	https://tools.ietf.org/html/rfc5280#section-4.2.1.12
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/InterfaceBackedManagedTypeIntegrationTest.groovy

            buildScript '''
                apply type: RulePlugin
            '''
    
            then:
            fails "tasks"
    
            and:
            failure.assertHasCause """Type Person is not a valid managed type:
    - Property 'name' is not valid: it must have either only abstract accessor methods or only implemented accessor methods"""
        }
    
        def "non-mutative non-abstract methods implemented as default interface methods are not allowed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      // operations [`begin`, `end`) will be rescheduled before operation `insert`.
      // A valid `RematSpec` requires begin <= end <= insert <= number of
      // operations. Note that (1) `end` is exclusive -- begin == end signifies a
      // trivial RematSpec (no operation will be rescheduled), (2) the
      // zero-initialized RematSpec {} is trivial and always valid.
      struct RematSpec {
        int begin;
        int end;
        int insert;
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                }
            }
            if ( rpc == null ) {
                return false;
            }
    
            boolean valid = false;
            for ( int hash : rpc.getHashAlgos() ) {
                if ( hash == pc.getHashAlgos()[ 0 ] ) {
                    valid = true;
                }
            }
            if ( !valid ) {
                log.error("Server returned invalid hash selection");
                return false;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/InternetDomainName.java

      /**
       * Validation method used by {@code from} to ensure that the domain name is syntactically valid
       * according to RFC 1035.
       *
       * @return Is the domain name syntactically valid?
       */
      private static boolean validateSyntax(List<String> parts) {
        int lastIndex = parts.size() - 1;
    
        // Validate the last part specially, as it has different syntax rules.
    
        if (!validatePart(parts.get(lastIndex), true)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    		},
    		"kubeconfig exist and is valid": {
    			existingKubeConfig: config,
    			kubeConfig:         config,
    			expectedError:      false,
    		},
    		"kubeconfig exist and is valid even if its CA contains whitespace": {
    			existingKubeConfig: configWhitespace,
    			kubeConfig:         config,
    			expectedError:      false,
    		},
    		"kubeconfig exist and is valid even if its CA is provided as an external file": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InternetDomainName.java

      /**
       * Validation method used by {@code from} to ensure that the domain name is syntactically valid
       * according to RFC 1035.
       *
       * @return Is the domain name syntactically valid?
       */
      private static boolean validateSyntax(List<String> parts) {
        int lastIndex = parts.size() - 1;
    
        // Validate the last part specially, as it has different syntax rules.
    
        if (!validatePart(parts.get(lastIndex), true)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    		if name[i] == '.' {
    			break
    		}
    	}
    	return name[:i]
    }
    
    func funcfile(f funcInfo, fileno int32) string {
    	datap := f.datap
    	if !f.valid() {
    		return "?"
    	}
    	// Make sure the cu index and file offset are valid
    	if fileoff := datap.cutab[f.cuOffset+uint32(fileno)]; fileoff != ^uint32(0) {
    		return gostringnocopy(&datap.filetab[fileoff])
    	}
    	// pcln section is corrupt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top