Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Forked (0.2 sec)

  1. pkg/kubelet/kubelet_pods.go

    	// At this point, the pod worker is aware of which pods are not desired (SyncKnownPods).
    	// We now look through the set of active pods for those that the pod worker is not aware of
    	// and deliver an update. The most common reason a pod is not known is because the pod was
    	// deleted and recreated with the same UID while the pod worker was driving its lifecycle (very
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    		set++
    	}
    	if set > 1 {
    		v = appendErrorf(v, "only one of targetRefs or workloadSelector can be set")
    	}
    	return
    }
    
    // ValidateAuthorizationPolicy checks that AuthorizationPolicy is well-formed.
    var ValidateAuthorizationPolicy = RegisterValidateFunc("ValidateAuthorizationPolicy",
    	func(cfg config.Config) (Warning, error) {
    		in, ok := cfg.Spec.(*security_beta.AuthorizationPolicy)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // mapping.
      void InitializeNamesFromAttribute(FuncOp fn, bool* has_input_attr);
    
      // Determines if the specified operation op's operand at operand_index
      // is marked as a stateful operand.
      bool IsStatefulOperand(mlir::Operation* op, int operand_index);
    
      // Returns a unique name for `val`.
      std::string UniqueName(mlir::Value val);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    			return &v.Type
    		}
    	}
    	return nil
    }
    
    // TestPastDeadlineJobFinished ensures that a Job is correctly tracked until
    // reaching the active deadline, at which point it is marked as Failed.
    func TestPastDeadlineJobFinished(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	clientset := fake.NewSimpleClientset()
    	fakeClock := clocktesting.NewFakeClock(time.Now().Truncate(time.Second))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // Any of the active modules can be specified by its module path.
    // The special pattern "all" specifies all the active modules, first the main
    // module and then dependencies sorted by module path.
    // A pattern containing "..." specifies the active modules whose
    // module paths match the pattern.
    // A query of the form path@version specifies the result of that query,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        Decomposes ReduceDataset op into a while loop that iterates the dataset and calls
        into the reduction function.  This decomposition is only done if the
        ReduceDataset op is marked for compilation with the _xla_compile_device_type
        attribute.
    
        For example, for the following function the ReduceDataset op:
    
        ```mlir
        func.func @single_state_single_dataset_type_no_arguments(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    // checkOld can be set to an expected value.
    // If the worker count changed
    func (p *ReplicationPool) ResizeWorkers(n, checkOld int) {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    
    	if (checkOld > 0 && len(p.workers) != checkOld) || n == len(p.workers) || n < 1 {
    		// Either already satisfied or worker count changed while we waited for the lock.
    		return
    	}
    	for len(p.workers) < n {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

      echo
      echo "  This will continually check to see if the API for kubernetes is reachable."
      echo "  This may time out if there was some uncaught error during start up."
      echo
    
      # curl in mavericks is borked.
      secure=""
      if which sw_vers >& /dev/null; then
        if [[ $(sw_vers | grep ProductVersion | awk '{print $2}') = "10.9."* ]]; then
          secure="--insecure"
        fi
      fi
    
      local start_time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        _XlaHostComputeMlirOp host_compute_op) {
      // Extract the module and function.
      // The '_XlaHostComputeMlir` verifier verifies that `host_mlir_module`
      // attribute is well formed, so we just return in case of an error in
      // extracting the host function since it should never occur.
      StringAttr host_module =
          host_compute_op->getAttrOfType<StringAttr>("host_mlir_module");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    		// changed here.
    		vetFlags = []string{"-unsafeptr=false"}
    
    		// Also turn off -unreachable checks during go test.
    		// During testing it is very common to make changes
    		// like hard-coded forced returns or panics that make
    		// code unreachable. It's unreasonable to insist on files
    		// not having any unreachable code during "go test".
    		// (buildall.bash still has -unreachable enabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top