Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for NCases (0.25 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    // invariant that pointers must stay within the pointed-to object,
    // we can't pull part of a pointer computation above the AddPtr.
    // See issue 37881.
    // Note: we don't need to handle any (x-C) cases because we already rewrite
    // (x-C) to (x+(-C)).
    
    // x + (C + z) -> C + (x + z)
    (Add64 (Add64 i:(Const64 <t>) z) x) && (z.Op != OpConst64 && x.Op != OpConst64) => (Add64 i (Add64 <t> z x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

              "ConvBackpropInputOp");
        }
    
        // tf.ResizeBilinearOp is perferred than tf.Conv2DBackpropInputOp since
        // the former has better portability, especially in inference use cases.
        bool align_corners;
        llvm::SmallVector<int, 2> output_sizes;
        if (MatchToResizeBilinearOp(conv_op, align_corners, output_sizes, rewriter)
                .succeeded()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    // returns true on success, or false if there is no next result row or an error
    // happened while preparing it. [Rows.Err] should be consulted to distinguish between
    // the two cases.
    //
    // Every call to [Rows.Scan], even the first one, must be preceded by a call to [Rows.Next].
    func (rs *Rows) Next() bool {
    	// If the user's calling Next, they're done with their previous row's Scan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    	selector, err := metav1.LabelSelectorAsSelector(set.Spec.Selector)
    	if err != nil {
    		return err
    	}
    
    	// Give up after 2 loops.
    	// 2 * 500 pods per loop = 1000 max pods <- this should be enough for all test cases.
    	// Anything slower than that (requiring more iterations) indicates a problem and should fail the test.
    	maxLoops := 2
    	loops := maxLoops
    	for set.Status.Replicas < *set.Spec.Replicas {
    		if loops < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	/* pre/post-indexed/signed-offset load/store register pair
    	   (unscaled, signed 10-bit quad-aligned and long offset).
    	The pre/post-indexed format only supports OREG cases because
    	the RSP and pseudo registers are not allowed to be modified
    	in this way. */
    	{AFLDPQ, C_NQAUTO_16, C_NONE, C_NONE, C_PAIR, C_NONE, 66, 4, REGSP, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

      - watch
      - list
      - update
      - delete
    - apiGroups:
      - ""
      resources:
      - configmaps
      verbs:
      - delete
    - apiGroups:
      - coordination.k8s.io
      resources:
      - leases
      verbs:
      - get
      - update
      - patch
      - create
    
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      labels:
        app: istiod
        release: istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	defer setStrictFakeConnClose(nil)
    
    	_, err := db.Query("SELECT|non_existent|name|")
    	if err == nil {
    		t.Fatal("Querying non-existent table should fail")
    	}
    }
    
    // Test cases where there's more than maxBadConnRetries bad connections in the
    // pool (issue 8834)
    func TestManyErrBadConn(t *testing.T) {
    	manyErrBadConnSetup := func(first ...func(db *DB)) *DB {
    		db := newTestDB(t, "people")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

              "ready": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    				externalClientIP = "2600:5200::1"
    				altNodeIP = testNodeIPv6Alt
    			}
    			output := net.JoinHostPort(epIP1, "80") + ", " + net.JoinHostPort(epIP2, "80")
    
    			// Basic tests are the same for all cases
    			runPacketFlowTests(t, getLine(), nft, testNodeIPs, []packetFlowTest{
    				{
    					name:     "pod to cluster IP",
    					sourceIP: podIP,
    					destIP:   svcIP,
    					destPort: 80,
    					output:   output,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top