Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for GETs (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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 (1)
  6. 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)
  7. 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)
  8. pkg/kubelet/kubelet_pods_test.go

    				kubelet_working_pods{config="runtime_only",lifecycle="terminating",static="unknown"} 0
    				`,
    			},
    		},
    		{
    			name:    "terminating pod that is known to the config gets no update during pod cleanup",
    			wantErr: false,
    			pods: []*v1.Pod{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:                       "pod1",
    						Namespace:                  "ns1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"service3", "LoadBalancer", "1.4.5.6", "2.3.4.5", "80/TCP,8090/UDP,8000/TCP", "<unknown>"}}},
    		},
    		// Long external IP's list gets elided.
    		{
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "service4"},
    				Spec: api.ServiceSpec{
    					ClusterIPs: []string{"1.5.6.7"},
    					Type:       "LoadBalancer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    	"cmd/internal/objabi"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"math"
    	"math/bits"
    	"sort"
    )
    
    // ctxt9 holds state while assembling a single function.
    // Each function gets a fresh ctxt9.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt9 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	autosize   int32
    	instoffset int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top