Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 369 for sget (0.61 sec)

  1. pkg/kubelet/server/server_test.go

    			defer conn.Close()
    
    			headers := http.Header{}
    			headers.Set("streamType", "error")
    			headers.Set("port", test.port)
    			_, err = conn.CreateStream(headers)
    			assert.Equal(t, test.shouldError, err != nil, "expect error")
    
    			if test.shouldError {
    				return
    			}
    
    			headers.Set("streamType", "data")
    			headers.Set("port", test.port)
    			dataStream, err := conn.CreateStream(headers)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		}
    
    		key := flowcontrol.ResponseHeaderMatchedFlowSchemaUID
    		if value := w.Header().Get(key); expectedFS != value {
    			return fmt.Errorf("expected HTTP header %s to have value %q, but got: %q", key, expectedFS, value)
    		}
    
    		key = flowcontrol.ResponseHeaderMatchedPriorityLevelConfigurationUID
    		if value := w.Header().Get(key); expectedPL != value {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            0 * _
        }
    
        def "can get and set task dependencies"() {
            given:
            def task = Mock(Task)
    
            expect:
            collection.builtBy.empty
    
            when:
            collection.builtBy("a")
            collection.builtBy("b")
            collection.from("f")
    
            then:
            collection.builtBy == ["a", "b"] as Set<Object>
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Futures.java

       * {@code function} is invoked on each call to {@link Future#get() get()} on the returned future.
       *
       * <p>The returned {@code Future} reflects the input's cancellation state directly, and any
       * attempt to cancel the returned Future is likewise passed through to the input Future.
       *
       * <p>Note that calls to {@linkplain Future#get(long, TimeUnit) timed get} only apply the timeout
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          // since we skip the TF::TPUReplicatedInputOp case.
          if (IsTPUOp(input_value.get().getDefiningOp()) &&
              !backward_pass_ops.contains(input_value.get().getDefiningOp()))
            values_to_add_nodes.insert(input_value.get());
      }
    
      for (Value value : values_to_add_nodes) {
        builder.setInsertionPointAfter(value.getDefiningOp());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. fastapi/param_functions.py

                allowed by the alias or set of aliases defined.
                """
            ),
        ] = None,
        serialization_alias: Annotated[
            Union[str, None],
            Doc(
                """
                'Blacklist' validation step. The vanilla parameter field will be the
                single one of the alias' or set of aliases' fields and all the other
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

       * {@code function} is invoked on each call to {@link Future#get() get()} on the returned future.
       *
       * <p>The returned {@code Future} reflects the input's cancellation state directly, and any
       * attempt to cancel the returned Future is likewise passed through to the input Future.
       *
       * <p>Note that calls to {@linkplain Future#get(long, TimeUnit) timed get} only apply the timeout
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. tensorflow/c/kernels_test.cc

        EXPECT_TF_SIZE(/*attr_name*/ "Attr", /*expected_list_size*/ list.size(),
                       /*expected_total_size*/ list_total_size);
        TF_OpKernelConstruction_GetAttrStringList(
            ctx, "Attr", values.get(), lens.get(), list.size(), storage.get(),
            list_total_size, status);
        EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
        for (size_t i = 0; i < list.size(); ++i) {
          EXPECT_EQ(list[i].size(), lens[i]) << i;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheBuilder.java

       * @throws IllegalStateException if a maximum size or weight was already set
       */
      @CanIgnoreReturnValue
      public CacheBuilder<K, V> maximumSize(long maximumSize) {
        checkState(
            this.maximumSize == UNSET_INT, "maximum size was already set to %s", this.maximumSize);
        checkState(
            this.maximumWeight == UNSET_INT,
            "maximum weight was already set to %s",
            this.maximumWeight);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. cmd/iam.go

    	for _, parentUser := range parentUsers {
    		currGroupsSet := updatedGroups[parentUser]
    		currGroups := currGroupsSet.ToSlice()
    		for _, cred := range parentUserToCredsMap[parentUser] {
    			gSet := set.CreateStringSet(cred.Groups...)
    			if gSet.Equals(currGroupsSet) {
    				// No change to groups memberships for this
    				// credential.
    				continue
    			}
    
    			// Expired credentials don't need group membership updates.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top