Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 260 for getCond (0.24 sec)

  1. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/listeners/constants/ConstantsTreeVisitor.java

        @Override
        public ConstantsVisitorContext visitVariable(VariableTree node, ConstantsVisitorContext context) {
            if (isAccessibleConstantVariableDeclaration(node) && node.getInitializer() != null && node.getInitializer().getKind() != METHOD_INVOCATION) {
                // We now just check, that constant declaration is not `static {}` or `CONSTANT = methodInvocation()`,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    				}
    				if e, a := noxuDefinition.Spec.Group+"/"+watchVersion, createdTypeMeta.GetAPIVersion(); e != a {
    					t.Errorf("expected %v, got %v", e, a)
    				}
    				if e, a := noxuDefinition.Spec.Names.Kind, createdTypeMeta.GetKind(); e != a {
    					t.Errorf("expected %v, got %v", e, a)
    				}
    			case <-time.After(5 * time.Second):
    				t.Errorf("missing watch event")
    			}
    		}
    
    		// Check get for all versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

       *         .call(
       *             () ->
       *                 new UsageHistory(
       *                     username,
       *                     Futures.getDone(loginDateFuture),
       *                     Futures.getDone(recentCommandsFuture)),
       *             executor);
       * }</pre>
       *
       * @since 20.0
       */
      @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. plugin/pkg/admission/eventratelimit/admission.go

    func (a *Plugin) Validate(ctx context.Context, attr admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	// ignore all operations that do not correspond to an Event kind
    	if attr.GetKind().GroupKind() != api.Kind("Event") {
    		return nil
    	}
    
    	// ignore all requests that specify dry-run
    	// because they don't correspond to any calls to etcd,
    	// they should not be affected by the ratelimit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 14 15:26:57 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

     * the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.util.concurrent.Futures.getDone;
    import static com.google.common.util.concurrent.MoreExecutors.rejectionPropagatingExecutor;
    import static com.google.common.util.concurrent.Platform.restoreInterruptIfIsInterruptedException;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifier.java

            List<Checksum> checksums = verification.getChecksums();
            for (Checksum checksum : checksums) {
                verifyChecksum(checksum.getKind(), file, checksum.getValue(), checksum.getAlternatives(), checksumService, builder);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission.go

    		return nil
    	}
    	return a.evaluator.Evaluate(attr)
    }
    
    func isNamespaceCreation(attr admission.Attributes) bool {
    	return attr.GetOperation() == admission.Create && attr.GetKind().GroupKind() == namespaceGVK
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/Checksum.java

            result = 31 * result + (origin != null ? origin.hashCode() : 0);
            result = 31 * result + (reason != null ? reason.hashCode() : 0);
            return result;
        }
    
        public ChecksumKind getKind() {
            return kind;
        }
    
        public String getValue() {
            return value;
        }
    
        @Nullable
        public Set<String> getAlternatives() {
            return alternatives;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ProjectDependency.java

        }
    
        @Override
        public int hashCode() {
            return Objects.hash(super.hashCode(), publication, publicationSourcePath, publicationJavadocPath);
        }
    
        @Override
        public String getKind() {
            return "src";
        }
    
        @Override
        public String toString() {
            return "ProjectDependency{" +
                "publication=" + publication +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/SourceFolder.java

        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        @Override
        public String getKind() {
            return "src";
        }
    
        public String getAbsolutePath() {
            return dir.getAbsolutePath();
        }
    
        public void trim() {
            trim(null);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top