Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,850 for cased (0.23 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

      - A String or CharSequence
      - Any Number'''))
    
            where:
            // not including char, Character, and String since Groovy auto-coerces to String,
            // or boolean/Boolean since those are special cased for 'true'
            varname << ['theBigDecimal', 'theBigInteger', 'theDouble', 'thedouble', 'thefloat', 'theFloat', 'theint',
                        'theInteger', 'theLong', 'thelong', 'theshort', 'theShort', 'thebyte', 'theByte']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/HashCode.java

      }
    
      /**
       * Creates a {@code HashCode} from a hexadecimal ({@code base 16}) encoded string. The string must
       * be at least 2 characters long, and contain only valid, lower-cased hexadecimal characters.
       *
       * <p>This method accepts the exact format generated by {@link #toString}. If you require more
       * lenient {@code base 16} decoding, please use {@link com.google.common.io.BaseEncoding#decode}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    A _variant_ is typically chosen based on the usage. For example, we might choose a different variant for compiling against a component (in which case we need the API of the component) or when executing code (in which case we need the runtime of the component).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	RequestURI string `json:"requestURI" protobuf:"bytes,4,opt,name=requestURI"`
    	// Verb is the kubernetes verb associated with the request.
    	// For non-resource requests, this is the lower-cased HTTP method.
    	Verb string `json:"verb" protobuf:"bytes,5,opt,name=verb"`
    	// Authenticated user information.
    	User authnv1.UserInfo `json:"user" protobuf:"bytes,6,opt,name=user"`
    	// Impersonated user information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    	ctx := context.TODO()
    	// In general, the webhook should not do any defaulting or validation. A special case of that is an empty object
    	// conversion that must result an empty object and practically is the same as nopConverter.
    	// A smoke test in API machinery calls the converter on empty objects. As this case happens consistently
    	// it special cased here not to call webhook converter. The test initiated here:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  6. tensorflow/c/eager/tape.h

    inline bool IsDtypeTrainable(DataType dtype) {
      switch (dtype) {
        case DT_HALF:
        case DT_BFLOAT16:
        case DT_FLOAT:
        case DT_DOUBLE:
        case DT_COMPLEX64:
        case DT_COMPLEX128:
        case DT_RESOURCE:
        case DT_VARIANT:
          return true;
        case DT_QINT8:
        case DT_QINT16:
        case DT_QINT32:
        case DT_QUINT8:
        case DT_QUINT16:
          return tensorflow::flags::Global()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	KindPrintf             // function behaves like fmt.Printf
    	KindErrorf             // function behaves like fmt.Errorf
    )
    
    func (kind Kind) String() string {
    	switch kind {
    	case KindPrint:
    		return "print"
    	case KindPrintf:
    		return "printf"
    	case KindErrorf:
    		return "errorf"
    	}
    	return ""
    }
    
    // Result is the printf analyzer's result type. Clients may query the result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/build.go

    			case p.Name != "main" && p.Standard && p.Internal.Build.PkgObj == "":
    				// Most packages in std do not need an installed .a, because they can be
    				// rebuilt and used directly from the build cache.
    				// A few targets (notably those using cgo) still do need to be installed
    				// in case the user's environment lacks a C compiler.
    			case p.Internal.GobinSubdir:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/clean_binary.txt

    # Build something to create the executable, including several cases
    [short] skip
    
    # --------------------- clean executables -------------------------
    
    # case1: test file-named executable 'main'
    env GO111MODULE=on
    
    ! exists main$GOEXE
    go build main.go
    exists -exec main$GOEXE
    go clean
    ! exists main$GOEXE
    
    # case2: test module-named executable 'a.b.c'
    ! exists a.b.c$GOEXE
    go build
    exists -exec a.b.c$GOEXE
    go clean
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 13:36:17 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  10. src/path/filepath/path_test.go

    		resolved, err := filepath.EvalSymlinks(check)
    		switch {
    		case runtime.GOOS == "darwin" && errors.Is(err, fs.ErrNotExist):
    			// On darwin, the temp dir is sometimes cleaned up mid-test (issue 37910).
    			testenv.SkipFlaky(t, 37910)
    		case err != nil:
    			t.Errorf("EvalSymlinks(%q) failed: %v", check, err)
    		case !strings.HasSuffix(resolved, wantSuffix):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top