Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 285 for SELF (0.12 sec)

  1. guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

      protected B usingGenerator(G subjectGenerator) {
        this.subjectGenerator = subjectGenerator;
        return self();
      }
    
      public G getSubjectGenerator() {
        return subjectGenerator;
      }
    
      @CanIgnoreReturnValue
      public B withSetUp(Runnable setUp) {
        this.setUp = setUp;
        return self();
      }
    
      public Runnable getSetUp() {
        return setUp;
      }
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/NioFileInterceptors.java

            @Receiver FileTypeDetector self,
            Path path,
            @CallerClassName String consumer
        ) throws IOException {
            tryReportFileOpened(path, consumer);
            return self.probeContentType(path);
        }
    
        @InterceptCalls
        @InstanceMethod
        public static SeekableByteChannel intercept_newByteChannel(
            @Receiver FileSystemProvider self,
            Path path,
            Set<?> options,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

            y:      y,
            width:  width,
            src:    g.src,
    	sumpos: g.sumpos,
    	sumneg: g.sumneg,
            self:   g.self,
          };
          displayList.push(box);
          if (direction > 0) {
    	// Leave gap on left hand side to indicate self contribution.
    	x += xscale*Math.abs(g.self);
          }
        }
        y += direction * ROW;
    
        // Find child or parent stacks.
        const next = [];
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multisets.java

      static <E extends @Nullable Object> boolean addAllImpl(
          Multiset<E> self, Collection<? extends E> elements) {
        checkNotNull(self);
        checkNotNull(elements);
        if (elements instanceof Multiset) {
          return addAllImpl(self, cast(elements));
        } else if (elements.isEmpty()) {
          return false;
        } else {
          return Iterators.addAll(self, elements.iterator());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    						OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    							Type: "object",
    							XValidations: apiextensions.ValidationRules{
    								{
    									Rule:            "size(self) > 0",
    									Message:         "openAPIV3Schema should contain more than 0 element.",
    									OptionalOldSelf: ptr.To(true),
    								},
    							},
    							Properties: map[string]apiextensions.JSONSchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Multisets.java

      static <E extends @Nullable Object> boolean addAllImpl(
          Multiset<E> self, Collection<? extends E> elements) {
        checkNotNull(self);
        checkNotNull(elements);
        if (elements instanceof Multiset) {
          return addAllImpl(self, cast(elements));
        } else if (elements.isEmpty()) {
          return false;
        } else {
          return Iterators.addAll(self, elements.iterator());
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map
      // are accessible via CEL macros and functions such as `self.all(...)`.
      // If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and
      // functions.
      // If the Rule is scoped to a scalar, `self` is bound to the scalar value.
      // Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

              if (nanos == 0L) return
    
              // Yield until notified, interrupted, or the duration elapses.
              val waitUntil = nanoTime + nanos
              val self = currentTask
              waitingCoordinatorTask = self
              waitingCoordinatorNotified = false
              waitingCoordinatorInterrupted = false
              yieldUntil {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/k8s/controller"
    	"istio.io/istio/security/pkg/pki/util"
    	certutil "istio.io/istio/security/pkg/util"
    )
    
    var rootCertRotatorLog = log.RegisterScope("rootcertrotator", "Self-signed CA root cert rotator log")
    
    type SelfSignedCARootCertRotatorConfig struct {
    	certInspector      certutil.CertUtil
    	caStorageNamespace string
    	org                string
    	rootCertFile       string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map
      // are accessible via CEL macros and functions such as `self.all(...)`.
      // If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and
      // functions.
      // If the Rule is scoped to a scalar, `self` is bound to the scalar value.
      // Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top