Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 104 for xdstype (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileTree.java

        @Override
        public FileTree visit(Closure closure) {
            return visit(fileVisitorFrom(closure));
        }
    
        static FileVisitor fileVisitorFrom(Closure closure) {
            return DefaultGroovyMethods.asType(closure, FileVisitor.class);
        }
    
        @Override
        public FileTree visit(final Action<? super FileVisitDetails> visitor) {
            return visit(new FileVisitor() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/network.go

    	var mu sync.Mutex
    	var wg sync.WaitGroup
    	doResolve := func(dnsType uint16) {
    		defer wg.Done()
    
    		res := n.client.Query(new(dns.Msg).SetQuestion(dns.Fqdn(name), dnsType))
    
    		mu.Lock()
    		defer mu.Unlock()
    		if res.Rcode == dns.RcodeServerFailure {
    			errs = multierror.Append(errs, fmt.Errorf("upstream dns failure, qtype: %v", dnsType))
    			return
    		}
    		for _, rr := range res.Answer {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top