Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 142 for getLeft (0.14 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. 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)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        regions.push_back(RegionSuccessor(
            &getNext(), getNext().front().getArguments().drop_back(n)));
      } else if (point.getRegionOrNull() == &getNext()) {
        // `next` branches to itself, or to `finalize`, passing all arguments given
        // to `next`s yield.
    
        // The number of values we're passing along.
        int num = getNext().front().getTerminator()->getNumOperands();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K 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