Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for logical (0.54 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        Pure,
        SameOperandsAndResultShape]> {
      let summary = "Logical NOT operator";
    
      let description = [{
        Element-wise logical NOT operation.
      }];
    
      let arguments = (ins TFL_BoolTensor:$lhs);
    
      let results = (outs TFL_BoolTensor:$output);
    }
    
    def TFL_LogicalOrOp : TFL_Op<"logical_or", [Pure]> {
      let summary = "Logical OR operator";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

          continue
    
    '
    
      local -r host_ip=$(python3 -c "${resolve_host_script_py}"$'\n'"resolve(\"${host_name}\")")
      local etcd_cluster=""
      local cluster_state="new"
      local etcd_protocol="http"
      local etcd_apiserver_protocol="http"
      local etcd_creds=""
      local etcd_apiserver_creds="${ETCD_APISERVER_CREDS:-}"
      local etcd_extra_args="${ETCD_EXTRA_ARGS:-}"
      local suffix="$1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    function make-gcloud-network-argument() {
      local network_project="$1"
      local region="$2"
      local network="$3"
      local subnet="$4"
      local address="$5"          # optional
      local enable_ip_alias="$6"  # optional
      local alias_size="$7"       # optional
    
      local networkURL="projects/${network_project}/global/networks/${network}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    				Host: "foo.default.svc.cluster.local",
    				TrafficPolicy: &networking.TrafficPolicy{
    					Tls: &networking.ClientTLSSettings{
    						Mode:            networking.ClientTLSSettings_SIMPLE,
    						CaCertificates:  constants.RootCertFilename,
    						Sni:             "foo.default.svc.cluster.local",
    						SubjectAltNames: []string{"foo.default.svc.cluster.local"},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    		if err != nil {
    			t.Fatalf("Test %d: %s: Failed to create HTTP request for Head Object: <ERROR> %v", i+1, instanceType, err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler,`func (api objectAPIHandlers) GetObjectHandler`  handles the request.
    		apiRouter.ServeHTTP(rec, req)
    
    		// Assert the response code with the expected status.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Decompose stack operations into local variable operations. Needs "
               "static shapes.";
      let constructor = "TF::CreateStackOpsDecompositionPass()";
      let description = [{
        A pass that converts stack operations to tensor operations and read/assign
        ops on local variables. A later resource lifting pass can further remove the
        local variables.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    	}
    	for _, test := range tests {
    		status := getPhase(test.pod, test.pod.Status.ContainerStatuses, false)
    		assert.Equal(t, test.status, status, "[test %s]", test.test)
    	}
    }
    
    // No special init-specific logic for this, see RestartAlways case
    // func TestPodPhaseWithRestartOnFailureInitContainers(t *testing.T) {
    // }
    
    func TestConvertToAPIContainerStatuses(t *testing.T) {
    	desiredState := v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // Usage:
    //
    //	go telemetry [off|local|on]
    //
    // Telemetry is used to manage Go telemetry data and settings.
    //
    // Telemetry can be in one of three modes: off, local, or on.
    //
    // When telemetry is in local mode, counter data is written to the local file
    // system, but will not be uploaded to remote servers.
    //
    // When telemetry is off, local counter data is neither collected nor uploaded.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	}
    	fmt.Fprintf(h, "goos %s goarch %s\n", cfg.Goos, cfg.Goarch)
    	fmt.Fprintf(h, "import %q\n", p.ImportPath)
    	fmt.Fprintf(h, "omitdebug %v standard %v local %v prefix %q\n", p.Internal.OmitDebug, p.Standard, p.Internal.Local, p.Internal.LocalPrefix)
    	if cfg.BuildTrimpath {
    		fmt.Fprintln(h, "trimpath")
    	}
    	if p.Internal.ForceLibrary {
    		fmt.Fprintf(h, "forcelibrary\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	return false
    }
    
    func (w *response) Header() Header {
    	if w.cw.header == nil && w.wroteHeader && !w.cw.wroteHeader {
    		// Accessing the header between logically writing it
    		// and physically writing it means we need to allocate
    		// a clone to snapshot the logically written state.
    		w.cw.header = w.handlerHeader.Clone()
    	}
    	w.calledHeader = true
    	return w.handlerHeader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top