Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for intp (0.1 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	openIDConfig        string
    	fetchKeysFromRemote bool
    }
    
    // Replace formats the contents of v into the provided template.
    func replace(tmpl string, v interface{}) string {
    	t := template.Must(template.New("test").Parse(tmpl))
    	buf := bytes.NewBuffer(nil)
    	t.Execute(buf, &v)
    	ret := buf.String()
    	klog.V(4).Infof("Replaced: %v into: %v", tmpl, ret)
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	c.Assert(response.StatusCode, http.StatusOK)
    
    	var buffer bytes.Buffer
    	// data to be written into buffer.
    	data := "1234567890"
    	// seed the random number generator once.
    	rand.Seed(3)
    	// generate a random number between 13 and 200.
    	randInt := getRandomRange(13, 200, -1)
    	// write into buffer till length of the buffer is greater than the generated random number.
    	for i := 0; i <= randInt; i += 10 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      bool ellipsis_seen = false;
      int num_new_axis_after_ellipsis = 0;
      for (int sparse_index = 0; sparse_index < sparse.dims; ++sparse_index) {
        if (ellipsis_seen && IsSet(sparse.new_axis_mask, sparse_index))
          num_new_axis_after_ellipsis++;
        if (IsSet(sparse.ellipsis_mask, sparse_index)) ellipsis_seen = true;
      }
    
      int dense_index = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    class TFL_OperandsHaveSameDimsTrait<int x, int y, int i, int j> :
      PredOpTrait<"dim " # i # " of operand " # x # " equals to dim " # j #
        " of operand " # y,
        TFL_OperandsHaveSameDims<x, y, i, j>>;
    
    // Return true if number of elements of x-th operand is the same as j-th dim of
    // y-th operand or any of those operands does not have static shape.
    class TFL_NumElementsEqualsDim<int x, int y, int j> :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    		}
    	}
    	var createPodIndex int
    	createPodsOneRound := func() {
    		if createPodIndex > waitSchedulingPodNumber {
    			return
    		}
    		for i := 0; i < createPodNumberPerRound; i++ {
    			podName := fmt.Sprintf("pod%d", createPodIndex)
    			// Note: the node(specifiedNodeName) may already be deleted, which leads pod scheduled failed.
    			specifiedNodeName := fmt.Sprintf("node%d", random.Intn(initialNodeNumber))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    ",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    ",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

       * indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = 1 << 30;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    		// failedPods and succeededPods cannot be incremented.
    		podControllerError        error
    		pendingPods               int
    		activePods                int
    		readyPods                 int
    		succeededPods             int
    		failedPods                int
    		terminatingPods           int
    		podsWithIndexes           []indexPhase
    		fakeExpectationAtCreation int32 // negative: ExpectDeletions, positive: ExpectCreations
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

    ",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
Back to top