Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for getLeft (0.13 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

        private static String getCiInjectionScriptContent(CI ci) {
            return CI_INJECTION_SCRIPT_CONTENTS.computeIfAbsent(ci) { new URL(it.getUrl()).getText(StandardCharsets.UTF_8.name()) }
        }
    
        private static final List<String> UNSUPPORTED = [
            "2.4.2",
            "2.4.1",
            "2.4",
            "2.3",
            "2.2.1",
            "2.2",
            "2.1",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

                    return compilationUnit;
                }
            };
    
            groovyClassLoader.setResourceLoader(NO_OP_GROOVY_RESOURCE_LOADER);
            String scriptText = source.getResource().getText();
            String scriptName = source.getClassName();
            GroovyCodeSource codeSource = new GroovyCodeSource(scriptText == null ? "" : scriptText, scriptName, "/groovy/script");
            try {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    on); public void clear(); public boolean remove(Object); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); protected final org.codehaus.plexus.logging.Logger getLogger(); protected final java.util.Set getSet(); protected final java.util.Set checkedGetSet() throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public final String getRole(); protected final void setRole(String); public final void contextualize(org.codehaus.ple...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            }
            return params;
        }
    
        protected ExtractData getExtractData(final Extractor extractor, final InputStream in, final Map<String, String> params) {
            try {
                return extractor.getText(in, params);
            } catch (final RuntimeException e) {
                if (!fessConfig.isCrawlerIgnoreContentException()) {
                    throw e;
                }
                if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

                bundle(name, ['foo', 'bar'])
            }
    
            then:
            sources.hasBundle(name, method)
    
            where:
            name          | method
            'test'        | 'getTest'
            'testBundle'  | 'getTestBundle'
            'test.bundle' | 'getBundle'
            'test.json'   | 'getJson'
            'a.b'         | 'getB'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. go.mod

    	github.com/beorn7/perks v1.0.1 // indirect
    	github.com/cenkalti/backoff/v4 v4.2.1 // indirect
    	github.com/cespare/xxhash/v2 v2.2.0 // indirect
    	github.com/chai2010/gettext-go v1.0.2 // indirect
    	github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect
    	github.com/cilium/ebpf v0.9.1 // indirect
    	github.com/containerd/console v1.0.3 // indirect
    	github.com/containerd/ttrpc v1.2.2 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSortedSet.java

      @GwtIncompatible // NavigableSet
      @Override
      @CheckForNull
      public E lower(E e) {
        return Iterators.<@Nullable E>getNext(headSet(e, false).descendingIterator(), null);
      }
    
      /** @since 12.0 */
      @Override
      @CheckForNull
      public E floor(E e) {
        return Iterators.<@Nullable E>getNext(headSet(e, true).descendingIterator(), null);
      }
    
      /** @since 12.0 */
      @Override
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. pkg/test/echo/proto/echo.pb.go

    	}
    	return false
    }
    
    func (x *ForwardEchoRequest) GetFollowRedirects() bool {
    	if x != nil {
    		return x.FollowRedirects
    	}
    	return false
    }
    
    func (x *ForwardEchoRequest) GetCert() string {
    	if x != nil {
    		return x.Cert
    	}
    	return ""
    }
    
    func (x *ForwardEchoRequest) GetKey() string {
    	if x != nil {
    		return x.Key
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

                compileJava.options.encoding = \'ISO8859_7\'
            """
    
            when:
            succeeds("run")
    
            then:
            output.contains(logStatement())
            file('encoded.out').getText("utf-8") == "\u03b1\u03b2\u03b3"
        }
    
        def "can compile with specified debug settings"() {
            given:
            goodCode()
    
            when:
            succeeds("compileJava")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      @GwtIncompatible // NavigableSet
      @Override
      @CheckForNull
      public E lower(E e) {
        return Iterators.<@Nullable E>getNext(headSet(e, false).descendingIterator(), null);
      }
    
      /** @since 12.0 */
      @Override
      @CheckForNull
      public E floor(E e) {
        return Iterators.<@Nullable E>getNext(headSet(e, true).descendingIterator(), null);
      }
    
      /** @since 12.0 */
      @Override
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top