Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 74 for nfinal (1.37 sec)

  1. src/cmd/go/alldocs.go

    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression.
    //
    //	-skip=""
    //		if non-empty, specifies a regular expression to suppress
    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression. If a directive matches both the -run and
    //		the -skip arguments, it is skipped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    		{age: 1, name: "Alice"},
    		{age: 2, name: "Bob"},
    		{age: 3, name: "Chris"},
    	}
    	if !slices.Equal(got, want) {
    		t.Errorf("mismatch.\n got: %#v\nwant: %#v", got, want)
    	}
    
    	// And verify that the final rows.Next() call, which hit EOF,
    	// also closed the rows connection.
    	if n := db.numFreeConns(); n != 1 {
    		t.Fatalf("free conns after query hitting EOF = %d; want 1", n)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    }
    
    // findInternal looks for the final "internal" path element in the given import path.
    // If there isn't one, findInternal returns ok=false.
    // Otherwise, findInternal returns ok=true and the index of the "internal".
    func findInternal(path string) (index int, ok bool) {
    	// Three cases, depending on internal at start/end of string or not.
    	// The order matters: we must return the index of the final element,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    			for k, v := range secret.Data {
    				if len(envFrom.Prefix) > 0 {
    					k = envFrom.Prefix + k
    				}
    
    				tmpEnv[k] = string(v)
    			}
    		}
    	}
    
    	// Determine the final values of variables:
    	//
    	// 1.  Determine the final value of each variable:
    	//     a.  If the variable's Value is set, expand the `$(var)` references to other
    	//         variables in the .Value field; the sources of variables are the declared
    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. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Allow all call operations to be inlined.
      bool isLegalToInline(Operation* call, Operation* callable,
                           bool wouldBeCloned) const final {
        return true;
      }
      bool isLegalToInline(Operation* op, Region* dest, bool wouldBeCloned,
                           IRMapping&) const final {
        // No TFLite op restricts inlining today, revise as needed in the future.
        return true;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		} else {
    			klog.V(3).InfoS("First seen time not recorded for pod",
    				"podUID", pod.UID,
    				"pod", klog.KObj(pod))
    		}
    	}
    
    	// Generate final API pod status with pod and status manager status
    	apiPodStatus := kl.generateAPIPodStatus(pod, podStatus, false)
    	// The pod IP may be changed in generateAPIPodStatus if the pod is using host network. (See #24576)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/net/http/server.go

    // wrapped by the response.w buffered writer.
    //
    // chunkWriter also is responsible for finalizing the Header, including
    // conditionally setting the Content-Type and setting a Content-Length
    // in cases where the handler's final output is smaller than the buffer
    // size. It also conditionally adds chunk headers, when in chunking mode.
    //
    // See the comment above (*response).Write for the entire write flow.
    type chunkWriter struct {
    	res *response
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // lowered to fused `tfl.fully_connected`.
    // This case covers for the following quantization patterns because
    // activation clipping ranges take affect in scale and zp of the final
    // `stablehlo.uniform_quantize`. See more details in b/319168201.
    // * dot_general_fn
    // * dot_general_with_relu_fn
    // * dot_general_with_relu6_fn
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    using the following two rules:
    </p>
    
    <ol>
    <li>
    When the input is broken into tokens, a semicolon is automatically inserted
    into the token stream immediately after a line's final token if that token is
    <ul>
    	<li>an
    	    <a href="#Identifiers">identifier</a>
    	</li>
    
    	<li>an
    	    <a href="#Integer_literals">integer</a>,
    	    <a href="#Floating-point_literals">floating-point</a>,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    //               outer_shape))) // outer_shape=[1 x 1 x n*m]
    // Here the broadcast operation is used to create `m` repetetions of the `n`
    // elements in the origiginal tensor, making a total of `m*n` number of elements
    // in the final tensor that will then be reshaped to form something like
    // [1 x 1 x 1 x m*n] by the outermost reshape_op.
    // problem: The inefficiency here is that the innermost reshape_op and the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top