Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,540 for statusCh (0.3 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    	randTime(&pod.CreationTimestamp.Time, r)
    	randTime(&pod.Status.StartTime.Time, r)
    	for i := range pod.Status.Conditions {
    		randTime(&pod.Status.Conditions[i].LastTransitionTime.Time, r)
    	}
    	for i := range pod.Status.ContainerStatuses {
    		containerStatus := &pod.Status.ContainerStatuses[i]
    		state := &containerStatus.State
    		if state.Running != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. samples/jwt-server/src/main_test.go

    	if err != nil {
    		t.Fatalf(err.Error())
    	}
    	resp, err := httpClient.Do(httpReq)
    	if err != nil {
    		t.Fatalf(err.Error())
    	}
    	defer resp.Body.Close()
    	if resp.StatusCode != http.StatusOK {
    		t.Fatalf("Expected to get %d, got %d", http.StatusOK, resp.StatusCode)
    	}
    }
    
    func TestJwtHTTPSServer(t *testing.T) {
    	var (
    		serverKey  = "../testdata/server.key"
    		serverCert = "../testdata/server.crt"
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 23 16:58:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/util/util.go

    // "containers" with respect to "statuses".
    // It returns true if the container is valid, else returns false.
    func GetContainerByIndex(containers []v1.Container, statuses []v1.ContainerStatus, idx int) (v1.Container, bool) {
    	if idx < 0 || idx >= len(containers) || idx >= len(statuses) {
    		return v1.Container{}, false
    	}
    	if statuses[idx].Name != containers[idx].Name {
    		return v1.Container{}, false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 18:07:39 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/base/attributes.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    		if err := assertResponseStatusCode(resultGot, http.StatusOK); err != nil {
    			t.Errorf("%s", err.Error())
    		}
    		resultGot = doer.Do(newClient(true), shouldUseNewConnection(t), "/echo?message=request-on-a-new-tcp-connection-should-succeed", time.Second)
    		if err := assertResponseStatusCode(resultGot, http.StatusOK); err != nil {
    			t.Errorf("%s", err.Error())
    		}
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.cc

    #include <string>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/base/nullability.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/DaemonExpirationStatus.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server.expiry;
    
    /**
     * Expiration status for daemon expiration check results.  Note that order here is important, higher ordinal statuses take precedent over lower ordinal statuses when aggregating results in {@link
     * AllDaemonExpirationStrategy}.
     */
    public enum DaemonExpirationStatus {
        DO_NOT_EXPIRE,
        QUIET_EXPIRE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/c/tf_status_helper.h

    #include <utility>
    
    #include "tensorflow/c/tf_status.h"
    #include "tsl/platform/status.h"
    
    namespace tsl {
    // Set the attribute of "tf_status" from the attributes of "status".
    void Set_TF_Status_from_Status(TF_Status* tf_status,
                                   const absl::Status& status);
    
    // Returns a "status" from "tf_status".
    absl::Status StatusFromTF_Status(const TF_Status* tf_status);
    }  // namespace tsl
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/pjrt_device_compiler_client.h

      // have been produced by this client.
      absl::StatusOr<std::string> SerializeExecutable(
          const xla::PjRtLoadedExecutable& executable) override;
    
      // PjRt doesn't support AOT compilation yet. Builds a PjRtLoadedExecutable and
      // serializes it to string.
      absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/function.h

      tensorflow::StatusOr<TaggedValue> Execute(tensorflow::AbstractContext*,
                                                TaggedValue) const;
    
     private:
      struct ConcreteFunction {
        tensorflow::AbstractFunctionPtr trace;
        TaggedValue input_signature;
        TaggedValue output_signature;
      };
      tensorflow::StatusOr<ConcreteFunction> GetConcreteFunction(TaggedValue) const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top