Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for checkIn (0.23 sec)

  1. src/cmd/go/alldocs.go

    // top-level "crash/bang".
    //
    // Code in vendor directories is not subject to import path
    // checking (see 'go help importpath').
    //
    // When 'go get' checks out or updates a git repository, it now also
    // updates submodules.
    //
    // Vendor directories do not affect the placement of new repositories
    // being checked out for the first time by 'go get': those are always
    // placed in the main GOPATH, never in a vendor subtree.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	vetFlags := VetFlags
    
    	// In GOROOT, we enable all the vet tests during 'go test',
    	// not just the high-confidence subset. This gets us extra
    	// checking for the standard library (at some compliance cost)
    	// and helps us gain experience about how well the checks
    	// work, to help decide which should be turned on by default.
    	// The command-line still wins.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// serviceHasSynced indicates whether services have been sync'd at least once.
    	// Check this before trusting a response from the lister.
    	serviceHasSynced cache.InformerSynced
    	// nodeLister knows how to list nodes
    	nodeLister corelisters.NodeLister
    	// nodeHasSynced indicates whether nodes have been sync'd at least once.
    	// Check this before trusting a response from the node lister.
    	nodeHasSynced cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      if [[ "${format}" == "fs" ]]; then
        if [[ "${interface}" == "scsi" ]]; then
          local actual_device
          actual_device=$(readlink -f "${ssd}" | cut -d '/' -f 3)
          # Error checking
          if [[ "${actual_device}" != sd* ]]; then
            echo "'actual_device' is not of the correct format. It must be the kernel name of the device, got ${actual_device} instead" >&2
            exit 1
          fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    	podIndexer.Add(pods[0])
    
    	manager.expectations = FakeJobExpectations{
    		controller.NewControllerExpectations(), true, func() {
    			// If we check active pods before checking expectations, the job
    			// will create a new replica because it doesn't see this pod, but
    			// has fulfilled its expectations.
    			podIndexer.Add(pods[1])
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. cmd/metrics-v2.go

    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: ilmSubsystem,
    					Name:      "versions_scanned",
    					Help:      "Total number of object versions checked for ilm actions since server uptime",
    					Type:      counterMetric,
    				},
    				Value: float64(globalScannerMetrics.lifetime(scannerMetricILM)),
    			},
    		}
    		for i := range globalScannerMetrics.actions {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Validates inputs to the TPU TF/XLA bridge";
    
      let description = [{
        This pass checks that the IR has valid input to TPU TF/XLA bridge.
        It checks the relations of multiple ops. Properties of single ops are
        checked by the 'verify' method of ops.
      }];
    
      let constructor = "TFTPU::CreateTPUValidateInputsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    // deleted by the status manager, but are not in pod workers.
    // First, the check for deletionTimestamp is a performance optimization as we
    // don't need to do anything with terminal pods without deletionTimestamp.
    // Second, the check for terminal pods is to avoid race conditions of triggering
    // deletion on Pending pods which are not yet added to pod workers.
    // Third, the check to skip pods known to pod workers is that the lifecycle of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    						errs = appendErrors(errs, check(len(src.Principals) != 0, "From.Principals"))
    						errs = appendErrors(errs, check(len(src.NotPrincipals) != 0, "From.NotPrincipals"))
    						errs = appendErrors(errs, check(len(src.RequestPrincipals) != 0, "From.RequestPrincipals"))
    						errs = appendErrors(errs, check(len(src.NotRequestPrincipals) != 0, "From.NotRequestPrincipals"))
    					}
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    // Translator class.
    // TODO(hinsu): Now that translation is done by making a single pass over the
    // MLIR module, consider inlining these validation checks at the place where
    // these invariants are assumed instead of checking upfront.
    static bool IsValidTFLiteMlirModule(ModuleOp module) {
      MLIRContext* context = module.getContext();
    
      // Verify that module has a function named main.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top