Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,441 for told (0.07 sec)

  1. 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)
  2. misc/cgo/gmp/gmp.go

    If xxx is data, cgo arranges for C.xxx to refer to the C variable,
    with the type translated as described above.  To do this, cgo must
    introduce a Go variable that points at the C variable (the linker can
    be told to initialize this pointer).  For example, if the gmp library
    provided
    
    	mpz_t zero;
    
    then cgo would rewrite a reference to C.zero by introducing
    
    	var _C_zero *C.mpz_t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  3. 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)
  4. docs/en/docs/tutorial/query-params-str-validations.md

    ## Use `Annotated` in the type for the `q` parameter
    
    Remember I told you before that `Annotated` can be used to add metadata to your parameters in the [Python Types Intro](../python-types.md#type-hints-with-metadata-annotations){.internal-link target=_blank}?
    
    Now it's the time to use it with FastAPI. 🚀
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    and kept doubling itself up and straightening itself out again,
    so that altogether, for the first minute or two, it was as much
    as she could do to hold it.
    
      As soon as she had made out the proper way of nursing it,
    (which was to twist it up into a sort of knot, and then keep
    tight hold of its right ear and left foot, so as to prevent its
    undoing itself,) she carried it out into the open air.  `IF I
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    and kept doubling itself up and straightening itself out again,
    so that altogether, for the first minute or two, it was as much
    as she could do to hold it.
    
      As soon as she had made out the proper way of nursing it,
    (which was to twist it up into a sort of knot, and then keep
    tight hold of its right ear and left foot, so as to prevent its
    undoing itself,) she carried it out into the open air.  `IF I
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  7. src/runtime/race/testdata/mop_test.go

    I come to bury Caesar, not to praise him.
    The evil that men do lives after them;
    The good is oft interred with their bones;
    So let it be with Caesar. The noble Brutus
    Hath told you Caesar was ambitious:
    If it were so, it was a grievous fault,
    And grievously hath Caesar answer'd it.
    Here, under leave of Brutus and the rest -
    For Brutus is an honourable man;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  8. pkg/controller/resourceclaim/controller.go

    		if reservedFor.APIGroup == "" &&
    			reservedFor.Resource == "pods" {
    			// A pod falls into one of three categories:
    			// - we have it in our cache -> don't remove it until we are told that it got removed
    			// - we don't have it in our cache anymore, but we have seen it before -> it was deleted, remove it
    			// - not in our cache, not seen -> double-check with API server before removal
    
    			keepEntry := true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. src/internal/fuzz/worker.go

    		// Start or restart the worker if it's not running.
    		if !w.isRunning() {
    			if err := w.startAndPing(ctx); err != nil {
    				return err
    			}
    		}
    
    		select {
    		case <-ctx.Done():
    			// Worker was told to stop.
    			err := w.stop()
    			if err != nil && !w.interrupted && !isInterruptError(err) {
    				return err
    			}
    			return ctx.Err()
    
    		case <-w.termC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    using internal linking mode, which is not the default when linking
    programs that use cgo (as described below). If the linker sees a file
    named dynimportfail it reports an error if it has been told to use
    internal linking mode. This approach is taken because generating
    _cgo_import.go requires doing a full C link of the package, which can
    fail for reasons that are irrelevant when using external linking mode.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top