Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for spill (1.76 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					foo:
    						type: string
    			`),
    			oldObj: mustUnstructured(`
    				foo: bar
    			`),
    			// Fieldpath is on unchanged field `foo`, but since rule is on the
    			// changed parent object we still get an error
    			newObj: mustUnstructured(`
    				foo: bar
    				bar: invalid
    			`),
    			errors: []string{
    				`root.foo: Invalid value: "object": gotta be baz`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      fi
    
      KUBELET_ARGS="${flags}"
    }
    
    # Sets KUBELET_ARGS with the kubelet flags for Windows nodes.
    # Note that to configure flags with explicit empty string values, we can't escape
    # double-quotes, because they still break sc.exe after expansion in the
    # binPath parameter, and single-quotes get parsed as characters instead of
    # string delimiters.
    function construct-windows-kubelet-flags {
      local flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    						Message: "Matched rules at index 0",
    					},
    				},
    			},
    		},
    		// In the current mechanism, the job controller adds Complete condition to Job
    		// even if some running pods still remain.
    		// So, we need to revisit here before we graduate the JobSuccessPolicy to beta.
    		// TODO(#123775): A Job might finish with ready!=0
    		// REF: https://github.com/kubernetes/kubernetes/issues/123775
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        `tf_device.launch` with host device attribute. It extracts the ops and wrap
        them in `tf_device.launch` with tpu device attribute so that ops can be
        run on TPU instead of CPU while still being compiled on host.
      }];
    
      let dependentDialects = [
        "mhlo::MhloDialect",
        "tf_device::TensorFlowDeviceDialect"
      ];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    				}
    			} else if container.Ready && container.State.Running != nil {
    				hasRunning = true
    				readyContainers++
    			}
    		}
    
    		// change pod status back to "Running" if there is at least one container still reporting as "Running" status
    		if reason == "Completed" && hasRunning {
    			if hasPodReadyCondition(pod.Status.Conditions) {
    				reason = "Running"
    			} else {
    				reason = "NotReady"
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	v := ValueOf([]int(nil))
    	shouldPanic("reflect.Value.Grow using unaddressable value", func() { v.Grow(0) })
    	v = ValueOf(new([]int)).Elem()
    	v.Grow(0)
    	if !v.IsNil() {
    		t.Errorf("v.Grow(0) should still be nil")
    	}
    	v.Grow(1)
    	if v.Cap() == 0 {
    		t.Errorf("v.Cap = %v, want non-zero", v.Cap())
    	}
    	want := v.UnsafePointer()
    	v.Grow(1)
    	got := v.UnsafePointer()
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. fastapi/applications.py

                RequestValidationError, request_validation_exception_handler
            )
            self.exception_handlers.setdefault(
                WebSocketRequestValidationError,
                # Starlette still has incorrect type specification for the handlers
                websocket_request_validation_exception_handler,  # type: ignore
            )
    
            self.user_middleware: List[Middleware] = (
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

           *
           * Accordingly, we have it annotated as returning `Enumeration<? extends Object>` in our
           * prototype checker's JDK. However, the checker still sees the return type as plain
           * `Enumeration<?>`, probably because of one of the following two bugs (and maybe those two
           * bugs are themselves just symptoms of the same underlying problem):
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    			secretKey:  credentials.SecretKey,
    
    			expectedRespStatus: http.StatusNoContent,
    		},
    		// Test case - 2.
    		// Attempt to delete an object which is already deleted.
    		// Still should return http response status 204.
    		{
    			bucketName: bucketName,
    			objectName: objectName,
    			accessKey:  credentials.AccessKey,
    			secretKey:  credentials.SecretKey,
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    	if !c.isEnabled() {
    		return errSRNotEnabled
    	}
    	if rreq.RequestingDepID != "" {
    		// validate if requesting site is still part of site replication
    		var foundRequestor bool
    		for _, p := range c.state.Peers {
    			if p.DeploymentID == rreq.RequestingDepID {
    				foundRequestor = true
    				break
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top