Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,549 for cas3 (0.04 sec)

  1. src/html/template/content.go

    		switch s := indirect(args[0]).(type) {
    		case string:
    			return s, contentTypePlain
    		case CSS:
    			return string(s), contentTypeCSS
    		case HTML:
    			return string(s), contentTypeHTML
    		case HTMLAttr:
    			return string(s), contentTypeHTMLAttr
    		case JS:
    			return string(s), contentTypeJS
    		case JSStr:
    			return string(s), contentTypeJSStr
    		case URL:
    			return string(s), contentTypeURL
    		case Srcset:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

            // 1) Both attributes are strongly typed and match, usually the case if both are sourced from the local build
            // 2) Both attributes are desugared, usually the case if both are sourced from published metadata
            if (otherAttributeType.isAssignableFrom(attribute.getType())) {
                return Cast.uncheckedCast(get());
            }
    
            // Attempt to coerce myself into the other attribute's type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/anames.go

    	"BLO",
    	"BLS",
    	"BLT",
    	"BMI",
    	"BNE",
    	"BPL",
    	"BRK",
    	"BVC",
    	"BVS",
    	"CASAD",
    	"CASALB",
    	"CASALD",
    	"CASALH",
    	"CASALW",
    	"CASAW",
    	"CASB",
    	"CASD",
    	"CASH",
    	"CASLD",
    	"CASLW",
    	"CASPD",
    	"CASPW",
    	"CASW",
    	"CBNZ",
    	"CBNZW",
    	"CBZ",
    	"CBZW",
    	"CCMN",
    	"CCMNW",
    	"CCMP",
    	"CCMPW",
    	"CINC",
    	"CINCW",
    	"CINV",
    	"CINVW",
    	"CLREX",
    	"CLS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/cycles2.go

    // license that can be found in the LICENSE file.
    
    package p
    
    import "unsafe"
    
    // Test case for issue 5090
    
    type t interface {
    	f(u)
    }
    
    type u interface {
    	t
    }
    
    func _() {
    	var t t
    	var u u
    
    	t.f(t)
    	t.f(u)
    
    	u.f(t)
    	u.f(u)
    }
    
    
    // Test case for issues #6589, #33656.
    
    type A interface {
    	a() interface {
    		AB
    	}
    }
    
    type B interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptor.java

                for (final Node child : Cast.<List<Node>>uncheckedCast(appNode.children())) {
                    String childLocalName = localNameOf(child);
                    switch (childLocalName) {
                        case "application-name":
    
                            applicationName = child.text();
    
                            break;
                        case "initialize-in-order":
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AllExceptIgnoredTestRunnerBuilder.java

        @Override
        protected JUnit4Builder junit4Builder() {
            return new FallbackJUnit4Builder();
        }
    
        /**
         * Handles a weird case when there are duplicate JUint 4 jars on the classpath with differing
         * versions. Specifically, when one version is below 4.4 and one is above. This case can occur
         * when a user declares a JUnit dependency on the test classpath while Gradle also loads
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

                MapProperty<Object, Object> asMapProperty = Cast.uncheckedNonnullCast(target);
                DefaultProvider<Map<Object, Object>> convention = new DefaultProvider<>(() -> Cast.uncheckedNonnullCast(mapping.getValue(_convention, _source)));
                asMapProperty.convention(convention);
            } else if (target instanceof HasMultipleValues) {
                HasMultipleValues<Object> asCollectionProperty = Cast.uncheckedNonnullCast(target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/Types.java

                    continue;
                }
    
                TypeVisitResult result = visitor.visitType(type);
    
                switch (result) {
                    case CONTINUE:
                        break;
                    case TERMINATE:
                        return;
                    default:
                        throw new AssertionError("Unexpected result: " + result);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    		FilterFunc: func(obj interface{}) bool {
    			if cast, ok := obj.(*corev1.ConfigMap); ok {
    				return cast.Name == c.configmapName && cast.Namespace == c.configmapNamespace
    			}
    			if tombstone, ok := obj.(cache.DeletedFinalStateUnknown); ok {
    				if cast, ok := tombstone.Obj.(*corev1.ConfigMap); ok {
    					return cast.Name == c.configmapName && cast.Namespace == c.configmapNamespace
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

        if (attr_names.empty()) return success();
    
        // N*T case
        if (attr_names.size() == 2) {
          derived_attrs->insert({attr_names[0].getValue(),
                                 rewriter.getI32IntegerAttr(input_types.size())});
          // Note that this uses the first element of the list to infer the T value.
          // A tf.Cast is required to cast the other inputs to the same type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top