Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for lombok (0.21 sec)

  1. 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)
  2. guava/src/com/google/common/cache/LocalCache.java

          }
        };
    
        // Masks used to compute indices in the following table.
    
        static final int ACCESS_MASK = 1;
        static final int WRITE_MASK = 2;
        static final int WEAK_MASK = 4;
    
        /** Look-up table for factories. */
        static final EntryFactory[] factories = {
          STRONG,
          STRONG_ACCESS,
          STRONG_WRITE,
          STRONG_ACCESS_WRITE,
          WEAK,
          WEAK_ACCESS,
          WEAK_WRITE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

          }
        };
    
        // Masks used to compute indices in the following table.
    
        static final int ACCESS_MASK = 1;
        static final int WRITE_MASK = 2;
        static final int WEAK_MASK = 4;
    
        /** Look-up table for factories. */
        static final EntryFactory[] factories = {
          STRONG,
          STRONG_ACCESS,
          STRONG_WRITE,
          STRONG_ACCESS_WRITE,
          WEAK,
          WEAK_ACCESS,
          WEAK_WRITE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/alldocs.go

    // that can be run locally. It must either be in the shell path
    // (gofmt), a fully qualified path (/usr/you/bin/mytool), or a
    // command alias, described below.
    //
    // Note that go generate does not parse the file, so lines that look
    // like directives in comments or multiline strings will be treated
    // as directives.
    //
    // The arguments to the directive are space-separated tokens or
    // double-quoted strings passed to the generator as individual
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	//
    	// Preemption must be disabled during this transient ownership,
    	// otherwise the P this is running on may enter GC stop while still
    	// holding the transient P, leaving that P in limbo and deadlocking the
    	// STW.
    	//
    	// Callers passing a non-nil P must already be in non-preemptible
    	// context, otherwise such preemption could occur on function entry to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. 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)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        unused.cancel(false);
        future = null;
    
        // Future should be collected because whenAll*Complete* doesn't need to look at its result.
        GcFinalization.awaitClear(futureRef);
      }
    
      @AndroidIncompatible
      @J2ktIncompatible
      @GwtIncompatible
      public void testWhenAllSucceed_releasesCallable() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        unused.cancel(false);
        future = null;
    
        // Future should be collected because whenAll*Complete* doesn't need to look at its result.
        GcFinalization.awaitClear(futureRef);
      }
    
      @AndroidIncompatible
      @J2ktIncompatible
      @GwtIncompatible
      public void testWhenAllSucceed_releasesCallable() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    		// those details from whether the modification time changes during
    		// "go install", so do a best-effort update of the file times to make it
    		// look like we rewrote a.Target even if we did not. Updating the mtime
    		// may also help other mtime-based systems that depend on our
    		// previous mtime updates that happened more often.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top