Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,441 for told (0.05 sec)

  1. 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)
  2. src/cmd/go/internal/imports/read.go

    				r.readImport(imports)
    			}
    			r.nextByte(false)
    		} else {
    			r.readImport(imports)
    		}
    	}
    
    	// 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 {
    		return r.buf[:len(r.buf)-1], nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 15 18:42:11 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  3. src/net/rpc/client.go

    	reqMutex sync.Mutex // protects following
    	request  Request
    
    	mutex    sync.Mutex // protects following
    	seq      uint64
    	pending  map[uint64]*Call
    	closing  bool // user has called Close
    	shutdown bool // server has told us to stop
    }
    
    // A ClientCodec implements writing of RPC requests and
    // reading of RPC responses for the client side of an RPC session.
    // The client calls [ClientCodec.WriteRequest] to write a request to the connection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. 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. 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)
  6. 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)
  7. pilot/pkg/leaderelection/leaderelection.go

    		l.cycle.Inc()
    		l.mu.Unlock()
    		ctx, cancel := context.WithCancel(context.Background())
    		go func() {
    			<-stop
    			cancel()
    		}()
    		le.Run(ctx)
    		select {
    		case <-stop:
    			// We were told to stop explicitly. Exit now
    			return
    		default:
    			cancel()
    			// Otherwise, we may have lost our lock. This can happen when the default revision changes and steals
    			// the lock from us.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top