Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 195 for getLine (0.22 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

          }
        }
      }
    }
    
    eclipseWtpComponent.doLast() {
      assert hooks == ['beforeMerged', 'whenMerged']
    }
    
            """
    
            //when
            component = getFile([:], '.settings/org.eclipse.wst.common.component').text
    
            //then
            assert component.contains('betterDeployName')
            assert !component.contains('coolDeployName')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/test/api_meta_meta_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if e, a := "a", typeAccessor.GetAPIVersion(); e != a {
    		t.Errorf("expected %v, got %v", e, a)
    	}
    	if e, a := "b", typeAccessor.GetKind(); e != a {
    		t.Errorf("expected %v, got %v", e, a)
    	}
    
    	accessor.SetNamespace("baz")
    	accessor.SetName("bar")
    	accessor.SetGenerateName("generate")
    	accessor.SetUID("other")
    	typeAccessor.SetAPIVersion("c")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go

    	return getNestedString(u.Object, "apiVersion")
    }
    
    func (u *Unstructured) SetAPIVersion(version string) {
    	u.setNestedField(version, "apiVersion")
    }
    
    func (u *Unstructured) GetKind() string {
    	return getNestedString(u.Object, "kind")
    }
    
    func (u *Unstructured) SetKind(kind string) {
    	u.setNestedField(kind, "kind")
    }
    
    func (u *Unstructured) GetNamespace() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. plugin/pkg/admission/limitranger/admission.go

    	// update request will always fail pod validation because those fields are immutable once the object is created.
    	if a.GetKind().GroupKind() == api.Kind("Pod") && a.GetOperation() == admission.Update {
    		return false
    	}
    
    	return a.GetKind().GroupKind() == api.Kind("Pod") || a.GetKind().GroupKind() == api.Kind("PersistentVolumeClaim")
    }
    
    // SupportsLimit always returns true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            this.setPhase(md.getPhase());
            this.setOnlineRequired(md.isOnlineRequired());
            this.setProjectRequired(md.isProjectRequired());
            this.setSince(md.getSince());
            this.setThreadSafe(true);
            this.setImplementation(md.getImplementation());
            try {
                this.setParameters(md.getParameters().stream().map(Parameter::new).collect(Collectors.toList()));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

    import static com.google.common.util.concurrent.AggregateFuture.ReleaseResourcesReason.OUTPUT_FUTURE_DONE;
    import static com.google.common.util.concurrent.Futures.getDone;
    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    import static java.util.Objects.requireNonNull;
    import static java.util.logging.Level.SEVERE;
    
    import com.google.common.annotations.GwtCompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                    @InputFiles
                    public Set<File> getInputFiles() {
                        return Collections.emptySet();
                    }
    
                    @Input
                    public File getFile() {
                        return new File("some-file");
                    }
    
                    @Input
                    public FileCollection getFileCollection() {
                        return getProject().files();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/DependencyVerificationReportWriter.java

                state.failedSignatures();
                if (((SignatureVerificationFailure) failure).getErrors().values().stream().map(SignatureVerificationFailure.SignatureError::getKind).noneMatch(kind -> kind == SignatureVerificationFailure.FailureKind.PASSED_NOT_TRUSTED)) {
                    state.maybeCompromised();
                } else {
                    state.hasUntrustedKeys();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

                    }
                    @Override
                    String getClassifier() {
                        return null
                    }
                    @Override
                    File getFile() {
                        return new File("customArtifact.jar")
                    }
                    @Override
                    Date getDate() {
                        return new Date()
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

            if (dfos.isInMemory()) {
                return new ByteArrayInputStream(dfos.getData());
            }
            return new BufferedInputStream(new FileInputStream(dfos.getFile()));
        }
    
        protected String getContent(final ContentWriter out, final String encoding, final boolean normalizeText) throws TikaException {
            File tempFile = null;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top