Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for read1 (0.1 sec)

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

    	// Before accessing the cacher's cache, wait for the ready to be ok.
    	// This is necessary to prevent users from accessing structures that are
    	// uninitialized or are being repopulated right now.
    	// ready needs to be set to false when the cacher is paused or stopped.
    	// ready needs to be set to true when the cacher is ready to use after
    	// initialization.
    	ready *ready
    
    	// Underlying storage.Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        if (info.is_read) {
          Operation* read = builder.create<TF::ReadVariableOp>(
              op_->getLoc(), info.data_type, resource);
          read->setAttrs(info.read_attrs ? info.read_attrs : empty_attrs);
          read->removeAttr(kDeviceAttr);
          info.hoisted_read = read->getResult(0);
        }
      }
    }
    
    // Replaces all resource reads with the hoisted read.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters_test.go

    		},
    		{
    			desc: "new, ready: soft requirement warning",
    			node: withCapacity.DeepCopy(),
    			cmStatus: cm.Status{
    				SoftRequirements: fmt.Errorf("foo"),
    			},
    			expectConditions: []v1.NodeCondition{*makeReadyCondition(true, "kubelet is posting ready status. WARNING: foo", now, now)},
    		},
    		{
    			desc:             "new, not ready: storage errors",
    			node:             withCapacity.DeepCopy(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    			c := make(chan int)
    			var ready, done sync.WaitGroup
    			defer func() {
    				close(c)
    				done.Wait()
    			}()
    
    			for i := 0; i < n; i++ {
    				ready.Add(1)
    				done.Add(1)
    				go func() {
    					ready.Done()
    					<-c
    					done.Done()
    				}()
    			}
    			// Let goroutines block on channel
    			ready.Wait()
    			for i := 0; i < 5; i++ {
    				runtime.Gosched()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    			}
    			return r.Sym
    		}
    	}
    	base.Fatalf("fixedSym data not known for %s:%d", sym, off)
    	return nil
    }
    
    // read8 reads one byte from the read-only global sym at offset off.
    func read8(sym interface{}, off int64) uint8 {
    	lsym := sym.(*obj.LSym)
    	if off >= int64(len(lsym.P)) || off < 0 {
    		// Invalid index into the global sym.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    		// an unscheduled, pending pod
    		// a scheduled, pending pod
    		// a scheduled, running, not-ready pod
    		// a scheduled, running, ready pod on same node as a related pod
    		// a scheduled, running, ready pod not on node with related pods
    		// Note that a pending pod cannot be ready
    		{
    			name:                 "len(pods) = 0 (i.e., diff = 0 too)",
    			pods:                 []*v1.Pod{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello.yaml.4.template.gen.yaml

            startupProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
              initialDelaySeconds: 0
              periodSeconds: 1
              timeoutSeconds: 3
              failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
          {{ end }}
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.template.gen.yaml

            startupProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
              initialDelaySeconds: 0
              periodSeconds: 1
              timeoutSeconds: 3
              failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
          {{ end }}
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/default.template.gen.yaml

            startupProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
              initialDelaySeconds: 0
              periodSeconds: 1
              timeoutSeconds: 3
              failureThreshold: {{ .Values.global.proxy.startupProbe.failureThreshold }}
          {{ end }}
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    		// are waiting for all pointers into them to go away. Sweeping handles
    		// identifying when this is true, and moves the span to the ready list.
    		quarantineList mSpanList
    
    		// readyList is a list of empty user arena spans that are ready for reuse.
    		readyList mSpanList
    	}
    
    	unused *specialfinalizer // never set, just here to force the specialfinalizer type into DWARF
    }
    
    var mheap_ mheap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top