Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 161 for Invert (0.7 sec)

  1. src/go/printer/testdata/parser.go

    			obj := ast.NewObj(kind, ident.Name)
    			// remember the corresponding declaration for redeclaration
    			// errors and global variable resolution/typechecking phase
    			obj.Decl = decl
    			if alt := scope.Insert(obj); alt != nil && p.mode&DeclarationErrors != 0 {
    				prevDecl := ""
    				if pos := alt.Pos(); pos.IsValid() {
    					prevDecl = fmt.Sprintf("\n\tprevious declaration at %s", p.file.Position(pos))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. src/net/http/request.go

    	// ":authority" pseudo-header field.
    	// It may be of the form "host:port". For international domain
    	// names, Host may be in Punycode or Unicode form. Use
    	// golang.org/x/net/idna to convert it to either format if
    	// needed.
    	// To prevent DNS rebinding attacks, server Handlers should
    	// validate that the Host header has a value for which the
    	// Handler considers itself authoritative. The included
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

       * the input, and if the input is cancelled, the returned {@code Future} will receive a callback
       * in which it will attempt to cancel itself.
       *
       * <p>An example use of this method is to convert a serializable object returned from an RPC into
       * a POJO.
       *
       * @param input The future to transform
       * @param function A Function to transform the results of the provided future to the results of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(tf-executor-convert-control-to-data-outputs{composite-tpuexecute-side-effects})' -split-input-file -verify-diagnostics | FileCheck %s
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Tests independent chains of two resources.
    
    // CHECK-LABEL: func @simple_independent_chains_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/cache_test.go

    					state = &framework.ImageStateSummary{
    						Size:  image.SizeBytes,
    						Nodes: sets.New[string](item.Name),
    					}
    					imageStates[name] = state
    				} else {
    					state.Nodes.Insert(item.Name)
    				}
    			}
    		}
    	}
    	return imageStates
    }
    
    // TestNodeOperators tests node operations of cache, including add, update
    // and remove.
    func TestNodeOperators(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      std::set<string> names;
      for (Node* node : graph.nodes()) {
        string cluster;
        if (TryGetNodeAttr(node->attrs(), kXlaClusterAttr, &cluster)) {
          CHECK(!cluster.empty());
          names.insert(cluster);
        }
      }
      return names;
    }
    
    absl::flat_hash_map<string, std::vector<string>> GetClusterSets(
        const Graph& g, std::vector<string>* cluster_names = nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    	},
    	ErrCastFailed: {
    		Code:           "CastFailed",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCast: {
    		Code:           "InvalidCast",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  8. tensorflow/BUILD

            "//learning/pathways/...",
            "//learning/serving/contrib/tfrt/mlir/canonical_ops/...",
            "//learning/serving/experimental/remote_predict/...",
            "//perftools/accelerators/xprof/convert/...",
            "//perftools/accelerators/xprof/integration_tests/...",
            "//smartass/brain/configure/...",
            "//tensorflow/...",
            "//tensorflow_decision_forests/...",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    				// create a "return pc". Since there is no actual call, here
    				// "return pc" just means a pc you subtract 1 from to get
    				// the pc of the "call". The actual no-op we insert may or
    				// may not be 1 byte.
    				pcBuf[n] = uf.pc + 1
    				n++
    			}
    			u.calleeFuncID = sf.funcID
    		}
    		// Add cgo frames (if we're done skipping over the requested number of
    		// Go frames).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    }
    
    func (list *mSpanList) isEmpty() bool {
    	return list.first == nil
    }
    
    func (list *mSpanList) insert(span *mspan) {
    	if span.next != nil || span.prev != nil || span.list != nil {
    		println("runtime: failed mSpanList.insert", span, span.next, span.prev, span.list)
    		throw("mSpanList.insert")
    	}
    	span.next = list.first
    	if list.first != nil {
    		// The list contains at least one span; link it in.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top