Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for toWords (0.51 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    			// this the start of a type parameter list, with some caveats:
    			// a single name followed by "]" tilts the decision towards an
    			// array declaration; a type parameter type that could also be
    			// an ordinary expression but which is followed by a comma tilts
    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == _Comma); pname != nil && (ptype != nil || p.tok != _Rbrack) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	// currOff is the current working offset.
    	currOff := off
    
    	// newOff is the offset where the next record will start. Pointers lead
    	// to data that belongs to other names and thus doesn't count towards to
    	// the usage of this name.
    	newOff := off
    
    	// ptr is the number of pointers followed.
    	var ptr int
    
    	// Name is a slice representation of the name data.
    	name := n.Data[:0]
    
    Loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    			// this the start of a type parameter list, with some caveats:
    			// a single name followed by "]" tilts the decision towards an
    			// array declaration; a type parameter type that could also be
    			// an ordinary expression but which is followed by a comma tilts
    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == token.COMMA); pname != nil && (ptype != nil || p.tok != token.RBRACK) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// known version), and the value of KillPodOptions is accumulated as pods cannot
    	// have their grace period shortened. This is the source of truth for the pod spec
    	// the kubelet is reconciling towards for all components that act on running pods.
    	activeUpdate *UpdatePodOptions
    
    	// syncedAt is the time at which the pod worker first observed this pod.
    	syncedAt time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
    
      std::vector<const tflite::OperatorT*> queue;
      for (int32_t output : output_indices) {
        if (auto& op = defining_op[output]) {
          queue.push_back(op);
        }
      }
    
      // Traverse the graph towards inputs.
      absl::flat_hash_set<const tflite::OperatorT*> visited;
      while (!queue.empty()) {
        const tflite::OperatorT* op = queue.back();
        queue.pop_back();
        if (!visited.insert(op).second) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    			},
    			services:  allServices,
    			expected:  []*Service{serviceA8000, serviceA9000, serviceAalt},
    			namespace: "a",
    		},
    		{
    			name: "*/* will bias towards configNamespace",
    			listenerHosts: map[string]hostClassification{
    				wildcardNamespace: {allHosts: []host.Name{wildcardService}, exactHosts: sets.New[host.Name]()},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    	// MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to
    	// Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it
    	// will be counted towards MaxUnavailable.
    	// +optional
    	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"varint,2,opt,name=maxUnavailable"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to
    	// Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it
    	// will be counted towards MaxUnavailable.
    	// +optional
    	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"varint,2,opt,name=maxUnavailable"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

        commitment was originally through December 31, 2020; we have since extended it.)
    
     *  **TLSv1 and TLSv1.1 are no longer enabled by default.** Major web browsers are working towards
        removing these versions altogether in early 2020. If your servers aren't ready yet you can
        configure OkHttp 3.13 to allow TLSv1 and TLSv1.1 connections:
    
        ```
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    // during STW. The caller must call mProf_Flush before calling
    // mProf_NextCycle again.
    //
    // This is called by mark termination during STW so allocations and
    // frees after the world is started again count towards a new heap
    // profiling cycle.
    func mProf_NextCycle() {
    	mProfCycle.increment()
    }
    
    // mProf_Flush flushes the events from the current heap profiling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top