Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for logical (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            // This set is unlikely to change often, so instead of introducing an additional level of indirection,
            // we are storing it here despite its relationship to Configuration Cache logic.
            // The full prohibited hierarchy is stored because there is no efficient way to check the class hierarchy via `org.objectweb.asm.Type`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        : public OpRewritePattern<TFL::GatherNdOp> {
      using OpRewritePattern<TFL::GatherNdOp>::OpRewritePattern;
    
      // Lowers 2D upscaling logic to a single TFL::ResizeNearestNeighor op.
      //
      // To optimize JAX resize implementation, especially for 2D upscaling, this
      // pattern matching logic captures the following pattern to replace with the
      // single TFL::resize_nearest_neighbor op instance as a fast fused op
      // available in TFLite.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    	// state, or to create a fake client that does not use a local cache.
    
    	// The client is passed initial sets, so we have to put them in the local setsIndexer cache.
    	if sets, err := client.AppsV1().StatefulSets("").List(context.TODO(), metav1.ListOptions{}); err != nil {
    		panic(err)
    	} else {
    		for _, set := range sets.Items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	// it should never leave regardless of the restart policy. The statuses
    	// of such pods should not be changed, and there is no need to sync them.
    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    				},
    				Status: api.ServiceStatus{
    					LoadBalancer: api.LoadBalancerStatus{
    						Ingress: []api.LoadBalancerIngress{
    							{
    								IP:       "2.3.4.5",
    								Hostname: "test.cluster.local",
    							},
    							{
    								IP:       "3.4.5.6",
    								Hostname: "test.cluster.com",
    							},
    						},
    					},
    				},
    			},
    			options: printers.GenerateOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    	}
    	if !outlier.SplitExternalLocalOriginErrors && outlier.ConsecutiveLocalOriginFailures.GetValue() > 0 {
    		err := "outlier detection consecutive local origin failures is specified, but split external local origin errors is set to false"
    		errs = AppendValidation(errs, errors.New(err))
    	}
    	if outlier.Interval != nil {
    		errs = AppendValidation(errs, agent.ValidateDuration(outlier.Interval))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status_test.go

    			testName: "multicast IPv6 address",
    		},
    		{
    			nodeIP:   "169.254.0.1",
    			success:  false,
    			testName: "IPv4 link-local unicast address",
    		},
    		{
    			nodeIP:   "fe80::0202:b3ff:fe1e:8329",
    			success:  false,
    			testName: "IPv6 link-local unicast address",
    		},
    		{
    			nodeIP:   "0.0.0.0",
    			success:  false,
    			testName: "Unspecified IPv4 address",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		t.Fatal(err)
    	}
    
    	host := cst.ts.Listener.Addr().String()
    	got := <-ch
    	if addr, ok := got.(net.Addr); !ok {
    		t.Errorf("local addr value = %T; want net.Addr", got)
    	} else if fmt.Sprint(addr) != host {
    		t.Errorf("local addr = %v; want %v", addr, host)
    	}
    }
    
    // https://golang.org/issue/15960
    func TestHandlerSetTransferEncodingChunked(t *testing.T) {
    	setParallel(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertHeader("a\tb", "c\u007fd")
          .assertHeader("\ud83c\udf69", "\u2615\ufe0f")
          .assertHeader("", "ef")
      }
    
      @Test
      fun customDns() {
        // Configure a DNS that returns our local MockWebServer for android.com.
        val dns = FakeDns()
        dns["android.com"] = Dns.SYSTEM.lookup(server.url("/").host)
        client =
          client.newBuilder()
            .dns(dns)
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        }
        std::vector<std::string> platforms;
        for (auto attr : op.getPlatforms().getAsRange<StringAttr>()) {
          platforms.push_back(attr.getValue().str());
        }
    
        // It is a terrible idea to have local MLIR contexts so we need to
        // register extensions here, again.
        mlir::DialectRegistry registry;
        registry.insert<mlir::func::FuncDialect>();
        mlir::func::registerAllExtensions(registry);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top