Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 174 for Requires (0.22 sec)

  1. pkg/kubelet/kubelet.go

    		kl.secretManager.UnregisterPod(pod)
    	}
    	if kl.configMapManager != nil {
    		kl.configMapManager.UnregisterPod(pod)
    	}
    
    	// Note: we leave pod containers to be reclaimed in the background since dockershim requires the
    	// container for retrieving logs and we want to make sure logs are available until the pod is
    	// physically deleted.
    
    	// remove any cgroups in the hierarchy for pods that are no longer running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: device = "/job:localhost/replica:0/task:0/device:GPU:0"
      return %0#0 : tensor<i32>
    }
    
    // Check that an iteration variable that requires an explicit Cast to be pass
    // through is actually made pass through.
    // CHECK-LABEL: testWhileRegionPassThroughExplicitCast
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				c.newObj,
    				c.oldObj,
    				budget,
    				WithRatcheting(common.NewCorrelatedObject(c.newObj, c.oldObj, &model.Structural{Structural: c.schema})),
    			)
    
    			require.Len(t, errs, len(c.errors), "must have expected number of errors")
    			require.Len(t, recorder.Warnings(), len(c.warnings), "must have expected number of warnings")
    
    			// Check that the expected errors were raised
    			for _, expectedErr := range c.errors {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        Performs transposed convolution operation on 3D inputs.
        Inputs:
          `inputs[0]`: required: the shape of output tensor
          `inputs[1]`: required: the filter weight tensor
          `inputs[2]`: required: the input activation tensor
          `inputs[3]`: optional: the bias tensor
      }];
    
      let arguments = (ins
        TFL_I32Tensor:$output_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. fastapi/routing.py

            if read_with_orm_mode:
                # Let from_orm extract the data from this model instead of converting
                # it now to a dict.
                # Otherwise, there's no way to extract lazy data that requires attribute
                # access instead of dict iteration, e.g. lazy relationships.
                return res
            return _model_dump(
                res,
                by_alias=True,
                exclude_unset=exclude_unset,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	}
    	for _, tt := range testCases {
    		checkSameType(t, FuncOf(tt.in, tt.out, tt.variadic), tt.want)
    	}
    
    	// check that variadic requires last element be a slice.
    	FuncOf([]Type{TypeOf(1), TypeOf(""), SliceOf(TypeOf(false))}, nil, true)
    	shouldPanic("must be slice", func() { FuncOf([]Type{TypeOf(0), TypeOf(""), TypeOf(false)}, nil, true) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    	select {
    	default:
    	case <-ctx.Done():
    		t.Fatal("timeout: failed to rollback query without closing rows:", ctx.Err())
    	}
    }
    
    // TestIssue20622 tests closing the transaction before rows is closed, requires
    // the race detector to fail.
    func TestIssue20622(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    0X_1FFFP-16  // == 0.1249847412109375
    0x15e-2      // == 0x15e - 2 (integer subtraction)
    
    0x.p1        // invalid: mantissa has no digits
    1p-2         // invalid: p exponent requires hexadecimal mantissa
    0x1.5e-2     // invalid: hexadecimal mantissa requires p exponent
    1_.5         // invalid: _ must separate successive digits
    1._5         // invalid: _ must separate successive digits
    1.5_e1       // invalid: _ must separate successive digits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Divisibility checks x%c == 0 convert to multiply and rotate.
    // Note, x%c == 0 is rewritten as x == c*(x/c) during the opt pass
    // where (x/c) is performed using multiplication with magic constants.
    // To rewrite x%c == 0 requires pattern matching the rewritten expression
    // and checking that the division by the same constant wasn't already calculated.
    // This check is made by counting uses of the magic constant multiplication.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    		}
    		if err != nil {
    			t.Fatalf("Test %d: Failed to create HTTP request for Put Object: <ERROR> %v", i+1, err)
    		}
    		// Removes auth header if test case requires it.
    		if testCase.removeAuthHeader {
    			req.Header.Del("Authorization")
    		}
    		switch testCase.fault {
    		case malformedEncoding:
    			req, err = malformChunkSizeSigV4(req, testCase.chunkSize-1)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top