Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 166 for toWords (0.29 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    		if c.wasBookmarkAfterRvReceivedLocked() {
    			return
    		}
    		// bookmark events are scheduled by startDispatchingBookmarkEvents method
    		// since we received a bookmark event that means we have
    		// converged towards the expected RV and it is okay to update the state so that
    		// this cacher can be scheduler for a regular bookmark events
    		c.state = cacheWatcherBookmarkReceived
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    transformations can be validated in a local scope. Simple patterns like folding
    `x-x` into a constant 0 do not need to update any control dependencies. It
    should also be easily lowerable towards multiple accelerators and heterogeneous
    systems in general.
    
    Operations in this dialect usually operate on tensor and scalar types defined in
    the standard dialect. The extra defined types are specific to TensorFlow: `QINT`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Splitter.java

            if (limit == 1) {
              // The limit has been reached, return the rest of the string as the
              // final item. This is tested after empty string removal so that
              // empty strings do not count towards the limit.
              end = toSplit.length();
              offset = -1;
              // Since we may have changed the end, we need to trim it again.
              while (end > start && trimmer.matches(toSplit.charAt(end - 1))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. operator/pkg/tpath/tree.go

    	yaml2 "sigs.k8s.io/yaml"
    
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/pkg/log"
    )
    
    var scope = log.RegisterScope("tpath", "tree traverser")
    
    // PathContext provides a means for traversing a tree towards the root.
    type PathContext struct {
    	// Parent in the Parent of this PathContext.
    	Parent *PathContext
    	// KeyToChild is the key required to reach the child.
    	KeyToChild any
    	// Node is the actual Node in the data tree.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	EncodesAsText bool
    	// Serializer is the individual object serializer for this media type.
    	Serializer Serializer
    	// PrettySerializer, if set, can serialize this object in a form biased towards
    	// readability.
    	PrettySerializer Serializer
    	// StrictSerializer, if set, deserializes this object strictly,
    	// erring on unknown fields.
    	StrictSerializer Serializer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. cmd/auth-handler.go

    			amzDate, errCode := parseAmzDateHeader(r)
    			if errCode != ErrNone {
    				if ok {
    					tc.FuncName = "handler.Auth"
    					tc.ResponseRecorder.LogErrBody = true
    				}
    
    				// All our internal APIs are sensitive towards Date
    				// header, for all requests where Date header is not
    				// present we will reject such clients.
    				defer logger.AuditLog(r.Context(), w, r, mustGetClaimsFromToken(r))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "FCTIDZ", argLength: 1, reg: fp11, asm: "FCTIDZ", typ: "Float64"}, // convert float to 64-bit int round towards zero
    		{name: "FCTIWZ", argLength: 1, reg: fp11, asm: "FCTIWZ", typ: "Float64"}, // convert float to 32-bit int round towards zero
    		{name: "FCFID", argLength: 1, reg: fp11, asm: "FCFID", typ: "Float64"},   // convert 64-bit integer to float
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux_test.go

    			once := routines%5 == 4
    			go waiter(question, response, once)
    
    			// Keep a count of how many goroutines are
    			// going to participate in the
    			// question/response test. This will count up
    			// towards 2*launches minus the count of
    			// routines that have been invoked with
    			// once=true.
    			routines++
    
    			// Decide what value we want to set the
    			// process-shared KEEPCAPS. Note, there is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    }
    
    func (RollingUpdateStatefulSetStrategy) SwaggerDoc() map[string]string {
    	return map_RollingUpdateStatefulSetStrategy
    }
    
    var map_Scale = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // 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
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 2;
    }
    
    // Scale represents a scaling request for a resource.
    message Scale {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top