Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 755 for told (0.11 sec)

  1. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	_ = wait.PollImmediateUntil(1*time.Minute, func() (bool, error) {
    		c.queue.Add(keyFn())
    		return false, nil
    	}, ctx.Done())
    
    	// wait until we're told to stop
    	<-ctx.Done()
    }
    
    func (c *Controller) runWorker() {
    	// hot loop until we're told to stop.  processNextWorkItem will automatically wait until there's work
    	// available, so we don't worry about secondary waits
    	for c.processNextWorkItem() {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/encoding/xml/read.go

    		}
    		val = val.Elem()
    	}
    	if val.CanInterface() && val.Type().Implements(unmarshalerAttrType) {
    		// This is an unmarshaler with a non-pointer receiver,
    		// so it's likely to be incorrect, but we do what we're told.
    		return val.Interface().(UnmarshalerAttr).UnmarshalXMLAttr(attr)
    	}
    	if val.CanAddr() {
    		pv := val.Addr()
    		if pv.CanInterface() && pv.Type().Implements(unmarshalerAttrType) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      private static final Runnable PARKED = new DoNothingRunnable();
      // Why 1000?  WHY NOT!
      private static final int MAX_BUSY_WAIT_SPINS = 1000;
    
      @SuppressWarnings("ThreadPriorityCheck") // The cow told me to
      @Override
      public final void run() {
        /*
         * Set runner thread before checking isDone(). If we were to check isDone() first, the task
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      private static final Runnable PARKED = new DoNothingRunnable();
      // Why 1000?  WHY NOT!
      private static final int MAX_BUSY_WAIT_SPINS = 1000;
    
      @SuppressWarnings("ThreadPriorityCheck") // The cow told me to
      @Override
      public final void run() {
        /*
         * Set runner thread before checking isDone(). If we were to check isDone() first, the task
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/common.go

    		// one (because the call to getComponentConfigVersionStates requires the currently installed version).
    		// This also makes the KubernetesVersion value returned for `upgrade plan` consistent as that command
    		// allows to not specify a target version in which case KubernetesVersion will always hold the currently
    		// installed one.
    		initCfg.KubernetesVersion = newK8sVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/build_read.go

    				r.readImport()
    			}
    			r.nextByte(false)
    		} else {
    			r.readImport()
    		}
    	}
    
    	info.header = r.buf
    
    	// If we stopped successfully before EOF, we read a byte that told us we were done.
    	// Return all but that last byte, which would cause a syntax error if we let it through.
    	if r.err == nil && !r.eof {
    		info.header = r.buf[:len(r.buf)-1]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. src/fmt/example_test.go

    	// Kim is 22 years old.
    }
    
    func ExamplePrintln() {
    	const name, age = "Kim", 22
    	fmt.Println(name, "is", age, "years old.")
    
    	// It is conventional not to worry about any
    	// error returned by Println.
    
    	// Output:
    	// Kim is 22 years old.
    }
    
    func ExamplePrintf() {
    	const name, age = "Kim", 22
    	fmt.Printf("%s is %d years old.\n", name, age)
    
    	// It is conventional not to worry about any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  8. src/encoding/xml/read_test.go

    The fundamental problem was that the tab code was
    not being told what column the text began in, so it
    didn&amp;#39;t know where to put the tab stops.  Another problem
    was that some of the code assumed that string byte
    offsets were the same as column offsets, which is only
    true if there are no tabs.
    
    In the process of fixing this, I cleaned up the arguments
    to Fold and ExpandTabs and renamed them Break and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/informers.go

    			// Unlike the other cases, we actually want to use the "old" event for terminated job pods
    			// - kubernetes will (weirdly) issue a new status to the pod with no IP on termination, meaning
    			// our check of `pod.status` will fail for (some) termination events.
    			//
    			// We will get subsequent events that append a new status with the IP put back, but it's simpler
    			// and safer to just check the old pod status for the IP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/go/build/read.go

    				r.readImport()
    			}
    			r.nextByte(false)
    		} else {
    			r.readImport()
    		}
    	}
    
    	info.header = r.buf
    
    	// If we stopped successfully before EOF, we read a byte that told us we were done.
    	// Return all but that last byte, which would cause a syntax error if we let it through.
    	if r.err == nil && !r.eof {
    		info.header = r.buf[:len(r.buf)-1]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top