Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for get2s (0.31 sec)

  1. pkg/scheduler/schedule_one_test.go

    	noResources := v1.PodSpec{
    		Containers: []v1.Container{
    			{},
    		},
    	}
    	noResources1 := noResources
    	noResources1.NodeName = "node1"
    	// A pod with the same resources as a 0-request pod gets by default as its resources (for spreading).
    	small := v1.PodSpec{
    		Containers: []v1.Container{
    			{
    				Resources: v1.ResourceRequirements{
    					Requests: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    			initialDelay := manager.failedPodsBackoff.Get(backoffKey)
    			if initialDelay <= 0 {
    				t.Fatal("Initial delay is expected to be set.")
    			}
    
    			resetCounters(manager)
    
    			// Immediate (second) sync gets limited by the backoff
    			expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 0)
    			delay := manager.failedPodsBackoff.Get(backoffKey)
    			if delay != initialDelay {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	if !reflect.DeepEqual(tr.ProxyConnectHeader, h) {
    		t.Errorf("tr.ProxyConnectHeader = %v; want %v", tr.ProxyConnectHeader, h)
    	}
    }
    
    // TestTransportGzipRecursive sends a gzip quine and checks that the
    // client gets the same value back. This is more cute than anything,
    // but checks that we don't recurse forever, and checks that
    // Content-Encoding is removed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

    priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object.  (v1.bar before v1.foo) We'd recommend something...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// as 1, and is set to 0 when we start writing template
    	// arguments. We add parentheses around expressions using > if
    	// scopes is 0. The effect is that an expression with > gets
    	// parentheses if used as a template argument that is not
    	// inside some other set of parentheses.
    	scopes int
    
    	buf  strings.Builder
    	last byte // Last byte written to buffer.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	// trashing syscalltick, we ensure that it'll appear as if we lost the P to the
    	// tracer parser and that we just reacquired it.
    	//
    	// Trash the value by decrementing because that gets us as far away from the value
    	// the syscall exit code expects as possible. Setting to zero is risky because
    	// syscalltick could already be zero (and in fact, is initialized to zero).
    	mp.syscalltick--
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        // the op itself doesn't branch back to itself. So this range is empty.
        auto end = this->getOperation()->operand_end();
        return ::mlir::OperandRange(end, end);
      } else {
        // "cond" gets the full arguments from the WhileRegionOp.
        // As does "body", if the condition block only returns a single boolean.
        auto begin = this->getOperation()->operand_begin();
        auto end = this->getOperation()->operand_end();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    	data = appendString(data, strdata["runtime.buildVersion"])
    	data = appendString(data, strdata["runtime.modinfo"])
    	// MacOS linker gets very upset if the size os not a multiple of alignment.
    	for len(data)%16 != 0 {
    		data = append(data, 0)
    	}
    	s.SetData(data)
    	s.SetSize(int64(len(data)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. src/net/http/server.go

    		}
    	}
    
    	if !header.has("Date") {
    		setHeader.date = appendTime(cw.res.dateBuf[:0], time.Now())
    	}
    
    	if hasCL && hasTE && te != "identity" {
    		// TODO: return an error if WriteHeader gets a return parameter
    		// For now just ignore the Content-Length.
    		w.conn.server.logf("http: WriteHeader called with both Transfer-Encoding of %q and a Content-Length of %d",
    			te, w.contentLength)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      suffix=""
      while echo "${instances}" | grep "${suffix}" &>/dev/null; do
        suffix="$(date | md5sum | head -c3)"
      done
      REPLICA_NAME="${MASTER_NAME}-${suffix}"
    }
    
    # Gets the instance templates in use by the cluster. It echos the template names
    # so that the function output can be used.
    # Assumed vars:
    #   NODE_INSTANCE_PREFIX
    #   WINDOWS_NODE_INSTANCE_PREFIX
    #
    # $1: project
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top