Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for isStatus (0.35 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return false;
      }
    
      Type element_type = type.getElementType();
      auto status = GetTFLiteType(element_type);
      if (!status.ok()) {
        return error_handler.emitError(
                   formatv("Failed to convert element type '{0}': {1}",
                           element_type, status.status().message())),
               false;
      }
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    func checkPodStatus(t *testing.T, kl *Kubelet, pod *v1.Pod, phase v1.PodPhase) {
    	t.Helper()
    	status, found := kl.statusManager.GetPodStatus(pod.UID)
    	require.True(t, found, "Status of pod %q is not found in the status map", pod.UID)
    	require.Equal(t, phase, status.Phase)
    }
    
    // Tests that we handle port conflicts correctly by setting the failed status in status map.
    func TestHandlePortConflicts(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// WriteHeader sends an HTTP response header with the provided
    	// status code.
    	//
    	// If WriteHeader is not called explicitly, the first call to Write
    	// will trigger an implicit WriteHeader(http.StatusOK).
    	// Thus explicit calls to WriteHeader are mainly used to
    	// send error codes or 1xx informational responses.
    	//
    	// The provided code must be a valid HTTP 1xx-5xx status code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_v1alpha2_PodSchedulingContextStatus_To_resource_PodSchedulingContextStatus(&in.Status, &out.Status, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    // Convert_v1alpha2_PodSchedulingContext_To_resource_PodSchedulingContext is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				t.Errorf("preFilter failed with status: %v", s)
    			}
    
    			for _, node := range tt.nodes {
    				nodeInfo, _ := snapshot.NodeInfos().Get(node.Name)
    				status := p.Filter(context.Background(), state, tt.pod, nodeInfo)
    				if len(tt.wantStatusCode) != 0 && status.Code() != tt.wantStatusCode[node.Name] {
    					t.Errorf("[%s]: expected status code %v got %v", node.Name, tt.wantStatusCode[node.Name], status.Code())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    	for _, tc := range []struct {
    		name          string
    		status        *admissionregistration.ValidatingAdmissionPolicyStatus
    		expectedError string
    	}{{
    		name:   "empty",
    		status: &admissionregistration.ValidatingAdmissionPolicyStatus{},
    	}, {
    		name: "type checking",
    		status: &admissionregistration.ValidatingAdmissionPolicyStatus{
    			TypeChecking: &admissionregistration.TypeChecking{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CacheTest.kt

            .body("A")
            .status("HTTP/1.1 200 A-OK")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .code(HttpURLConnection.HTTP_NOT_MODIFIED)
            .build(),
        )
    
        // scenario 2: condition fails
        server.enqueue(
          response.newBuilder()
            .body("B")
            .status("HTTP/1.1 200 B-OK")
            .build(),
        )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	CRYPTO_REPORT_MAXSIZE                       = 0x160
    	CS5                                         = 0x0
    	CSIGNAL                                     = 0xff
    	CSTART                                      = 0x11
    	CSTATUS                                     = 0x0
    	CSTOP                                       = 0x13
    	CSUSP                                       = 0x1a
    	DAXFS_MAGIC                                 = 0x64646178
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    		`Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "IngressSpec", "IngressSpec", 1), `&`, ``, 1) + `,`,
    		`Status:` + strings.Replace(strings.Replace(this.Status.String(), "IngressStatus", "IngressStatus", 1), `&`, ``, 1) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *IngressBackend) String() string {
    	if this == nil {
    		return "nil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      int64_t pad_low;
      int64_t pad_high;
    
      tensorflow::Status status = tensorflow::GetWindowedOutputSizeVerbose(
          input_size, filter_size, dilation_rate, stride, padding, output_size,
          &pad_low, &pad_high);
      // Return failure if expected_output_size could not be calculated.
      if (!status.ok()) return failure();
      return success();
    }
    
    LogicalResult Conv2DOp::inferReturnTypes(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top