Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for evacuated (0.32 sec)

  1. pkg/kubelet/kubelet_test.go

    }
    
    // testPodSyncLoopHandler is a lifecycle.PodSyncLoopHandler that is used for testing.
    type testPodSyncLoopHandler struct {
    	// list of pods to sync
    	podsToSync []*v1.Pod
    }
    
    // ShouldSync evaluates if the pod should be synced from the kubelet.
    func (a *testPodSyncLoopHandler) ShouldSync(pod *v1.Pod) bool {
    	for _, podToSync := range a.podsToSync {
    		if podToSync.UID == pod.UID {
    			return true
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      }
    
     private:
      mlir::ModuleOp* module_op_;
    };
    
    // Removes the `mhlo.custom_call @shape_assertion` custom call which represents
    // an assertion that the first operand (`assert_what`) evaluates to `true`.
    // This is a temporary workaround for unblocking dynamic model conversion
    // because starting from version 7, in presence of shape polymorphism JAX will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    	// program size, we approximate by the length. To ensure that a program that is smaller than 1024
    	// length but larger than 1024 size does not enter the system, we program Envoy to allow very large
    	// regexs to avoid NACKs. See
    	// https://github.com/jpeach/snippets/blob/889fda84cc8713af09205438b33553eb69dd5355/re2sz.cc to
    	// evaluate program size.
    	if len(re) > 1024 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          // There is a test detecting unsafe optimizations.
          // Unsafe math optimizations can reorder float formulas, and set the
          // compensation to constant 0. The formula must be evaluated as written
          // for the algorithm to work.
          // (Note: -ffast-math is a superset of -funsafe-math-optimizations.)
          if (std::abs(sum) >= std::abs(addend)) {
            compensation += (sum - new_sum) + addend;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    		w.Header().Set(xhttp.AmzServerSideEncryptionCustomerKeyMD5, r.Header.Get(xhttp.AmzServerSideEncryptionCustomerKeyMD5))
    	}
    
    	s3Select.Evaluate(w)
    
    	// Notify object accessed via a GET request.
    	sendEvent(eventArgs{
    		EventName:    event.ObjectAccessedGet,
    		BucketName:   bucket,
    		Object:       objInfo,
    		ReqParams:    extractReqParams(r),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      fi
      local paramstring
      paramstring="$(convert-manifest-params "${params[*]}")"
      local -r src_file="${KUBE_HOME}/kube-manifests/kubernetes/gci-trusty/kube-controller-manager.manifest"
      # Evaluate variables.
      sed -i -e "s@{{pillar\['kube_docker_registry'\]}}@${DOCKER_REGISTRY}@g" "${src_file}"
      sed -i -e "s@{{pillar\['kube-controller-manager_docker_tag'\]}}@${kube_rc_docker_tag}@g" "${src_file}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    // The arguments to the directive are space-separated tokens or
    // double-quoted strings passed to the generator as individual
    // arguments when it is run.
    //
    // Quoted strings use Go syntax and are evaluated before execution; a
    // quoted string appears as a single argument to the generator.
    //
    // To convey to humans and machine tools that code is generated,
    // generated source should have a line that matches the following
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/generic.rules

    (StaticLECall {callAux} _ (Const(64|32) [0]) (Const(64|32) [0]) mem)
    	&& isSameCall(callAux, "runtime.makeslice")
    	=> (MakeResult (Addr <v.Type.FieldType(0)> {ir.Syms.Zerobase} (SB)) mem)
    
    // Evaluate constant address comparisons.
    (EqPtr  x x) => (ConstBool [true])
    (NeqPtr x x) => (ConstBool [false])
    (EqPtr  (Addr {x} _) (Addr {y} _)) => (ConstBool [x == y])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    				return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    			}
    		}
    
    		// When kubelet is containerized, devicePath may be a symlink at a place unavailable to
    		// kubelet, so evaluate it on the host and expect that it links to a device in /dev,
    		// which will be available to containerized kubelet. If still it does not exist,
    		// AttachFileDevice will fail. If kubelet is not containerized, eval it anyway.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    			nodes:     []string{"node1", "node2"},
    			pod:       st.MakePod().Name("ignore").UID("ignore").Obj(),
    			wantNodes: sets.New("node1", "node2"),
    		},
    		{
    			name: "test without score plugin no extra nodes are evaluated",
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterFilterPlugin("TrueFilter", tf.NewTrueFilterPlugin),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top