Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for look (0.09 sec)

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

    to introduce it.'
    
      `I don't like the look of it at all,' said the King:
    `however, it may kiss my hand if it likes.'
    
      `I'd rather not,' the Cat remarked.
    
      `Don't be impertinent,' said the King, `and don't look at me
    like that!'  He got behind Alice as he spoke.
    
      `A cat may look at a king,' said Alice.  `I've read that in
    some book, but I don't remember where.'
    
    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

    to introduce it.'
    
      `I don't like the look of it at all,' said the King:
    `however, it may kiss my hand if it likes.'
    
      `I'd rather not,' the Cat remarked.
    
      `Don't be impertinent,' said the King, `and don't look at me
    like that!'  He got behind Alice as he spoke.
    
      `A cat may look at a king,' said Alice.  `I've read that in
    some book, but I don't remember where.'
    
    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. src/cmd/go/internal/load/pkg.go

    	if bp, _ := cfg.BuildContext.Import(path, "", build.IgnoreVendor); bp.Dir != "" {
    		return path
    	}
    
    	// Otherwise look for a go.mod supplying a version element.
    	// Some version-like elements may appear in paths but not
    	// be module versions; we skip over those to look for module
    	// versions. For example the module m/v2 might have a
    	// package m/v2/api/v1/foo.
    	limit := len(path)
    	for limit > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

          ReferenceEntry<K, V> e = null;
          lock();
          try {
            long now = map.ticker.read();
            preWriteCleanup(now);
    
            AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
            int index = hash & (table.length() - 1);
            ReferenceEntry<K, V> first = table.get(index);
    
            // Look for an existing entry.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

          ReferenceEntry<K, V> e = null;
          lock();
          try {
            long now = map.ticker.read();
            preWriteCleanup(now);
    
            AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
            int index = hash & (table.length() - 1);
            ReferenceEntry<K, V> first = table.get(index);
    
            // Look for an existing entry.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // returned type.
      auto lhs_element_type = lhs_shape_type.getElementType();
      auto rhs_element_type_with_subtype =
          mlir::dyn_cast<TF::TensorFlowTypeWithSubtype>(
              rhs_shape_type.getElementType());
      // Look for resource or variant element type and ensure we refine the subtype.
      // We only support a single subtype at the moment, we won't handle something
      // like:
      //   tensor<!tf_type.variant<tensor<10xf32>, tensor<8xf32>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    // Edit provides a command-line interface for editing go.work,
    // for use primarily by tools or scripts. It only reads go.work;
    // it does not look up information about the modules involved.
    // If no file is specified, Edit looks for a go.work file in the current
    // directory and its parent directories
    //
    // The editing flags specify a sequence of editing operations.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		// the list of pending runnable goroutines for when we
    		// re-enable user scheduling and look again.
    		lock(&sched.lock)
    		if schedEnabled(gp) {
    			// Something re-enabled scheduling while we
    			// were acquiring the lock.
    			unlock(&sched.lock)
    		} else {
    			sched.disable.runnable.pushBack(gp)
    			sched.disable.n++
    			unlock(&sched.lock)
    			goto top
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    at the opposite Wall in the Sun's refracted Light, I placed an open Book. Then going six Feet and two Inches from the Book, I placed there the above-mentioned Lens, by which the Light reflected from the Book might be made to converge and meet again at the distance of six Feet and two Inches behind the Lens, and there paint the Species of the Book upon a Sheet of white Paper much after the manner of the second Experiment. The Book and Lens being made fast, I noted the Place where the Paper was, when...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	metrics.MirrorPodCount.Set(float64(len(mirrorPods)))
    
    	// At this point, the pod worker is aware of which pods are not desired (SyncKnownPods).
    	// We now look through the set of active pods for those that the pod worker is not aware of
    	// and deliver an update. The most common reason a pod is not known is because the pod was
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top