Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for GETs (0.05 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// problem:
    	// - Pod A and B get scheduled as above.
    	// - PreBind for pod A gets called first, then fails with a temporary API error.
    	//   It removes the updated claim from the assume cache because of that.
    	// - PreBind for pod B gets called next and succeeds with adding the
    	//   allocation and its own reservedFor entry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
        /** Gets the next entry in the chain. */
        E getNext();
    
        /** Gets the entry's hash. */
        int getHash();
    
        /** Gets the key for this entry. */
        K getKey();
    
        /** Gets the value for the entry. */
        V getValue();
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
        /** Gets the next entry in the chain. */
        E getNext();
    
        /** Gets the entry's hash. */
        int getHash();
    
        /** Gets the key for this entry. */
        K getKey();
    
        /** Gets the value for the entry. */
        V getValue();
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. pkg/kubelet/nodestatus/setters_test.go

    				{Type: v1.NodeExternalIP, Address: "55.55.55.55"},
    				{Type: v1.NodeExternalDNS, Address: testKubeletHostname},
    				{Type: v1.NodeHostName, Address: testKubeletHostname}, // detected hostname gets auto-added
    			},
    			shouldError: false,
    		},
    		{
    			name:   "cloud doesn't report hostname, nodeIP is set, no override, detected hostname match",
    			nodeIP: netutils.ParseIPSloppy("10.1.1.1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    }
    
    def TF_GlobalIterIdOp : TF_Op<"GlobalIterId", [DeclareOpInterfaceMethods<TF_GetResourceInstanceInterface>, TF_GlobalIterIdEffect]> {
      let summary = [{
    Op that gets the global step id.
      }];
    
      let description = [{
    This op gets the step id for each loop iteration.
      }];
    
      let arguments = (ins);
    
      let results = (outs
        TF_Int64Tensor:$iter_id
      );
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    					numReplicas, c.Status.Replicas)
    			}
    		default:
    			t.Errorf("Unexpected action %+v", a)
    			break
    		}
    	}
    	if gets != 1 || updates != 2 {
    		t.Errorf("Expected 1 get and 2 updates, got %d gets %d updates", gets, updates)
    	}
    }
    
    // TODO: This test is too hairy for a unittest. It should be moved to an E2E suite.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    include::sample[dir="snippets/kotlinDsl/containers-api/kotlin",files="build.gradle.kts[tags=api]"]
    ====
    <1> Gets a reference of type `Task` to the existing task named `check`
    <2> Registers a new untyped task named `myTask1`
    <3> Gets a reference to the existing task named `compileJava` of type `JavaCompile`
    <4> Registers a new task named `myCopy1` of type `Copy`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		if len(tMessage) != 0 {
    			if len(cStatus.Message) != 0 {
    				cStatus.Message += ": "
    			}
    			cStatus.Message += tMessage
    		}
    	}
    	return cStatus
    }
    
    // getPodContainerStatuses gets all containers' statuses for the pod.
    func (m *kubeGenericRuntimeManager) getPodContainerStatuses(ctx context.Context, uid kubetypes.UID, name, namespace string) ([]*kubecontainer.Status, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. cmd/peer-rest-server.go

    	if err := storageServerRequestValidate(r); err != nil {
    		s.writeErrorResponse(w, err)
    		return false
    	}
    	return true
    }
    
    // GetBandwidth gets the bandwidth for the buckets requested.
    func (s *peerRESTServer) GetBandwidth(params *grid.URLValues) (*bandwidth.BucketBandwidthReport, *grid.RemoteErr) {
    	buckets := params.Values().Get("buckets")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    							Label("hello", "world").
    							Obj()
    					},
    				},
    			},
    			want: want{
    				prebind: result{
    					status: framework.AsStatus(errors.New(`ResourceVersion must match the object that gets updated`)),
    				},
    			},
    		},
    		"delayed-allocation-scheduling-completed": {
    			// Remove PodSchedulingContext object once the pod is scheduled.
    			pod:         podWithClaimName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top