Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for xdstype (0.23 sec)

  1. src/net/http/httptest/recorder.go

    func (rw *ResponseRecorder) writeHeader(b []byte, str string) {
    	if rw.wroteHeader {
    		return
    	}
    	if len(str) > 512 {
    		str = str[:512]
    	}
    
    	m := rw.Header()
    
    	_, hasType := m["Content-Type"]
    	hasTE := m.Get("Transfer-Encoding") != ""
    	if !hasType && !hasTE {
    		if b == nil {
    			b = []byte(str)
    		}
    		m.Set("Content-Type", http.DetectContentType(b))
    	}
    
    	rw.WriteHeader(200)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/AbstractCallInterceptor.java

            MethodHandle decorated = MethodHandles.insertArguments(INTERCEPTOR, 0, this, spreader, flags, caller.lookupClass().getName());
            return decorated.asCollector(Object[].class, original.type().parameterCount()).asType(original.type());
        }
    
        private Object interceptMethodHandle(MethodHandle original, int flags, String consumer, Object[] args) throws Throwable {
            boolean isSpread = (flags & IndyInterface.SPREAD_CALL) != 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

    import com.tngtech.archunit.core.domain.JavaTypeVariable;
    import com.tngtech.archunit.core.domain.JavaWildcardType;
    import com.tngtech.archunit.core.domain.PackageMatchers;
    import com.tngtech.archunit.core.domain.properties.HasType;
    import com.tngtech.archunit.lang.ArchCondition;
    import com.tngtech.archunit.lang.ArchRule;
    import com.tngtech.archunit.lang.ConditionEvents;
    import com.tngtech.archunit.lang.SimpleConditionEvent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/FilteringProvider.java

        }
    
        @Nonnull
        protected Value<? extends T> filterValue(@SuppressWarnings("unused") EvaluationContext.ScopeContext context, Value<? extends T> value) {
            if (value.isMissing()) {
                return value.asType();
            }
            T unpackedValue = value.getWithoutSideEffect();
            if (spec.isSatisfiedBy(unpackedValue)) {
                return value;
            } else {
                return Value.missing();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/AutoTestedSamplesToolingApiTest.groovy

                    message = message - sourceFile.absolutePath
                    throw new AssertionError(message)
                }
            }
    
            def diagnosticListener = checkDiagnostic.asType("javax.tools.DiagnosticListener" as Class)
    
            def input = fileManager.getJavaFileObjectsFromFiles(Arrays.asList(sourceFile))
            compiler.getTask(null,
                fileManager,
                diagnosticListener,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. src/net/lookup_windows.go

    	return ptrs, nil
    }
    
    const dnsSectionMask = 0x0003
    
    // returns only results applicable to name and resolves CNAME entries.
    func validRecs(r *syscall.DNSRecord, dnstype uint16, name string) []*syscall.DNSRecord {
    	cname := syscall.StringToUTF16Ptr(name)
    	if dnstype != syscall.DNS_TYPE_CNAME {
    		cname = resolveCNAME(cname, r)
    	}
    	rec := make([]*syscall.DNSRecord, 0, 10)
    	for p := r; p != nil; p = p.Next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_cache.go

    	DelegateVirtualServices []model.ConfigHash
    	DestinationRules        []*model.ConsolidatedDestRule
    	EnvoyFilterKeys         []string
    }
    
    func (r *Cache) Type() string {
    	return model.RDSType
    }
    
    func (r *Cache) Cacheable() bool {
    	if r == nil {
    		return false
    	}
    	if r.ListenerPort == 0 {
    		return false
    	}
    
    	for _, config := range r.VirtualServices {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenModule.groovy

        MavenModule hasPackaging(String packaging)
    
        /**
         * Sets the type of the main artifact for this module.
         */
        MavenModule hasType(String type)
    
        /**
         * Define a variant with attributes. Variants are only published when using {@link #withModuleMetadata()}.
         */
        MavenModule variant(String variant, Map<String, String> attributes)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/stablehlo_quantizer_odml_oss.ipynb

            "  rng = np.random.default_rng(seed=1235)\n",
            "  for _ in range(2):\n",
            "    yield {\n",
            "        'lhs_operand': rng.uniform(low=-1.0, high=1.0, size=input_shape).astype(\n",
            "            np.float32\n",
            "        )\n",
            "    }\n",
            "converter = tf.lite.TFLiteConverter.from_saved_model(saved_model_dir)\n",
            "converter.target_spec.supported_ops = [\n",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 12 03:40:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pkg/kubelet/network/dns/dns.go

    	dnsConfig, err := c.getHostDNSConfig(c.ResolverConfig)
    	if err != nil {
    		return nil, err
    	}
    
    	dnsType, err := getPodDNSType(pod)
    	if err != nil {
    		klog.ErrorS(err, "Failed to get DNS type for pod. Falling back to DNSClusterFirst policy.", "pod", klog.KObj(pod))
    		dnsType = podDNSCluster
    	}
    	switch dnsType {
    	case podDNSNone:
    		// DNSNone should use empty DNS settings as the base.
    		dnsConfig = &runtimeapi.DNSConfig{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top