Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for getLeft (0.21 sec)

  1. 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)
  2. 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)
  3. pkg/controller/cronjob/cronjob_controllerv2.go

    	// prevent us from making the job twice (name the job with hash of its
    	// scheduled time).
    
    	// Add the just-started job to the status list.
    	jobRef, err := getRef(jobResp)
    	if err != nil {
    		logger.V(2).Info("Unable to make object reference", "cronjob", klog.KObj(cronJob), "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

      public static <T extends @Nullable Object> T get(
          Iterator<? extends T> iterator, int position, @ParametricNullness T defaultValue) {
        checkNonnegative(position);
        advance(iterator, position);
        return getNext(iterator, defaultValue);
      }
    
      static void checkNonnegative(int position) {
        if (position < 0) {
          throw new IndexOutOfBoundsException("position (" + position + ") must not be negative");
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

      public static <T extends @Nullable Object> T get(
          Iterator<? extends T> iterator, int position, @ParametricNullness T defaultValue) {
        checkNonnegative(position);
        advance(iterator, position);
        return getNext(iterator, defaultValue);
      }
    
      static void checkNonnegative(int position) {
        if (position < 0) {
          throw new IndexOutOfBoundsException("position (" + position + ") must not be negative");
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

                                           /*allow_return_of_existing=*/true);
    
      next_name = GetName(regional, "_next");
      next_name = ExtractSingleBlockRegion(symbol_table, regional.getNext(),
                                           next_name, extern_values, worklist,
                                           /*extern_values_passthrough=*/false,
                                           /*only_one_return_value=*/false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                        pojo = getProject().getObjects().property(Pojo.class);
                        pojo.set(new Pojo(true));
                    }
    
                    @Input
                    public String getText() {
                        return text.get();
                    }
    
                    @OutputFile
                    public File getFile() {
                        return file.get();
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/cronjob_controllerv2_test.go

    				if err != nil {
    					t.Fatalf("%s: unexpected error creating a job from template: %v", name, err)
    				}
    				job.UID = "1234"
    				job.Namespace = cj.Namespace
    				if tc.stillActive {
    					ref, err := getRef(job)
    					if err != nil {
    						t.Fatalf("%s: unexpected error getting the job object reference: %v", name, err)
    					}
    					if tc.jobPresentInCJActiveStatus {
    						cj.Status.Active = []v1.ObjectReference{*ref}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    	resp := headers.GetResponse()
    
    	requestHeadersToAdd, setAuthority := translateAppendHeaders(req.GetSet(), false)
    	reqAdd, addAuthority := translateAppendHeaders(req.GetAdd(), true)
    	requestHeadersToAdd = append(requestHeadersToAdd, reqAdd...)
    
    	responseHeadersToAdd, _ := translateAppendHeaders(resp.GetSet(), false)
    	respAdd, _ := translateAppendHeaders(resp.GetAdd(), true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public int getDepth(); private static int findFragment(int, char[], int, int); public String getPositionDescripti(); public int getLineNumber(); public int getColumnNumber(); public boolean isWhitespace() throws XmlPullParserExcepti; public String getText(); public char[] getTextCharacters(int[]); public String getNamespace(); public String getName(); public String getPrefix(); public boolean isEmptyElementTag() throws XmlPullParserExcepti; public int getAttributeCount(); public String getAttributeNamespac(int);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top