Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for know (0.06 sec)

  1. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    again:--
    
      `I didn't know that Cheshire cats always grinned; in fact, I
    didn't know that cats COULD grin.'
    
      `They all can,' said the Duchess; `and most of 'em do.'
    
      `I don't know of any that do,' Alice said very politely,
    feeling quite pleased to have got into a conversation.
    
      `You don't know much,' said the Duchess; `and that's a fact.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    again:--
    
      `I didn't know that Cheshire cats always grinned; in fact, I
    didn't know that cats COULD grin.'
    
      `They all can,' said the Duchess; `and most of 'em do.'
    
      `I don't know of any that do,' Alice said very politely,
    feeling quite pleased to have got into a conversation.
    
      `You don't know much,' said the Duchess; `and that's a fact.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			continue
    		}
    
    		// If we're here, we know the pod was previously running, but doesn't have a terminated status. We will check now to
    		// see if it's in a pending state.
    		status := statuses[container.Name]
    		// If the status we're about to write indicates the default, the Waiting status will force this pod back into Pending.
    		// That isn't true, we know the pod was previously running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		if pollUntil != 0 {
    			if now == 0 {
    				now = nanotime()
    			}
    			delay = pollUntil - now
    			if delay < 0 {
    				delay = 0
    			}
    		}
    		if faketime != 0 {
    			// When using fake time, just poll.
    			delay = 0
    		}
    		list, delta := netpoll(delay) // block until new work is available
    		// Refresh now again, after potentially blocking.
    		now = nanotime()
    		sched.pollUntil.Store(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	dnsConfigurer *dns.Configurer
    
    	// serviceLister knows how to list services
    	serviceLister serviceLister
    	// serviceHasSynced indicates whether services have been sync'd at least once.
    	// Check this before trusting a response from the lister.
    	serviceHasSynced cache.InformerSynced
    	// nodeLister knows how to list nodes
    	nodeLister corelisters.NodeLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions: Class inheritance diagram Direct Subclasses All Known Subinterfaces All Known Implementing Classes Class/interface declaration Class/interface description Nested Class Summary Field Summary Constructor Summary Method Summary Field Detail Constructor Detail Method Detail Each summary entry contains the first sentence...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/popper.min.js.map

    this.state,\n    this.popper,\n    this.reference,\n    this.options.positionFixed\n  );\n\n  // compute auto placement, store placement inside the data object,\n  // modifiers will be able to edit `placement` if needed\n  // and refer to originalPlacement to know the original value\n  data.placement = computeAutoPlacement(\n    this.options.placement,\n    data.offsets.reference,\n    this.popper,\n    this.reference,\n    this.options.modifiers.flip.boundariesElement,\n    this.options.modifiers.flip.padding\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // is stripped after the ServeHTTP call finishes and the values are
    // sent in the trailers.
    //
    // This mechanism is intended only for trailers that are not known
    // prior to the headers being written. If the set of trailers is fixed
    // or known before the header is written, the normal Go trailers mechanism
    // is preferred:
    //
    //	https://pkg.go.dev/net/http#ResponseWriter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		t.Fatal(err)
    	}
    	fooAddr := fooRes.Header.Get("foo-ipport")
    	if fooAddr == "" {
    		t.Fatal("No addr on /foo request")
    	}
    
    	fooDone := make(chan struct{})
    	go func() {
    		// We know that the foo Dial completed and reached the handler because we
    		// read its header. Wait for the bar request to block in Dial, then
    		// let the foo response finish so we can use its connection for /bar.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/reflect/value.go

    	return i
    }
    
    // unpackEface converts the empty interface i to a Value.
    func unpackEface(i any) Value {
    	e := (*abi.EmptyInterface)(unsafe.Pointer(&i))
    	// NOTE: don't read e.word until we know whether it is really a pointer or not.
    	t := e.Type
    	if t == nil {
    		return Value{}
    	}
    	f := flag(t.Kind())
    	if t.IfaceIndir() {
    		f |= flagIndir
    	}
    	return Value{t, e.Data, f}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top