Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,905 for Consumes (0.14 sec)

  1. guava/src/com/google/common/collect/Cut.java

        return false;
      }
    
      // Prevent "missing hashCode" warning by explicitly forcing subclasses implement it
      @Override
      public abstract int hashCode();
    
      /*
       * The implementation neither produces nor consumes any non-null instance of type C, so
       * casting the type parameter is safe.
       */
      @SuppressWarnings("unchecked")
      static <C extends Comparable> Cut<C> belowAll() {
        return (Cut<C>) BelowAll.INSTANCE;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

            reader.readNextLine(result)
            result.toString() == "line 2"
    
            !reader.readNextLine(result)
    
            where:
            eol << ['\n', '\r', '\r\n']
        }
    
        def "consumes quoted strings"() {
            when:
            input = '''
    "abc\\""
    "\\""
    '''
    
            then:
            output == '\n"abc\\""\n"\\""'
        }
    
        def "removes line continuation characters"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Cut.java

        return false;
      }
    
      // Prevent "missing hashCode" warning by explicitly forcing subclasses implement it
      @Override
      public abstract int hashCode();
    
      /*
       * The implementation neither produces nor consumes any non-null instance of type C, so
       * casting the type parameter is safe.
       */
      @SuppressWarnings("unchecked")
      static <C extends Comparable> Cut<C> belowAll() {
        return (Cut<C>) BelowAll.INSTANCE;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/root.go

    	ws.Path(APIGroupPrefix)
    	ws.Doc("get available API versions")
    	ws.Route(ws.GET("/").To(s.restfulHandle).
    		Doc("get available API versions").
    		Operation("getAPIVersions").
    		Produces(mediaTypes...).
    		Consumes(mediaTypes...).
    		Writes(metav1.APIGroupList{}))
    	return ws
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 22:44:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Service.java

       * {@code A -> B}.
       *
       * @since 9.0 (in 1.0 as {@code com.google.common.base.Service.State})
       */
      enum State {
        /** A service in this state is inactive. It does minimal work and consumes minimal resources. */
        NEW,
    
        /** A service in this state is transitioning to {@link #RUNNING}. */
        STARTING,
    
        /** A service in this state is operational. */
        RUNNING,
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. src/net/http/responsecontroller.go

    		}
    	}
    }
    
    // EnableFullDuplex indicates that the request handler will interleave reads from [Request.Body]
    // with writes to the [ResponseWriter].
    //
    // For HTTP/1 requests, the Go HTTP server by default consumes any unread portion of
    // the request body before beginning to write the response, preventing handlers from
    // concurrently reading from the request and writing the response.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

          result.write(this, i)
          // Consume '"'.
          readByte()
          return result.readUtf8()
        }
    
        if (size == i + 1L) return null // Dangling escape.
        result.write(this, i)
        // Consume '\'.
        readByte()
        result.write(this, 1L) // The escaped character.
      }
    }
    
    /**
     * Consumes and returns a non-empty token, terminating at special characters in
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputs.java

     */
    @HasInternalProtocol
    public interface TaskInputs {
        /**
         * Returns true if this task has declared the inputs that it consumes.
         *
         * @return true if this task has declared any inputs.
         */
        boolean getHasInputs();
    
        /**
         * Returns the input files of this task.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 16:09:35 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    	case "watch":
    		// WATCH supports `SendInitialEvents` option, which effectively means
    		// that is starts with sending of the contents of a corresponding LIST call.
    		// From that perspective, given that the watch only consumes APF seats
    		// during its initialization (sending init events), its cost should then
    		// be computed the same way as for a regular list.
    		if utilfeature.DefaultFeatureGate.Enabled(features.WatchList) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_cluster_util.h

    // Returns true if it is possible (but not guaranteed) that `n` calls a
    // function.
    bool MayCallFunction(const Node& n, const FunctionLibraryDefinition* flib_def);
    
    // Returns true if `node` an operator that consumes only the shape of its input,
    // not the data itself.
    bool IsShapeConsumerOp(const Node& node);
    
    // Computes a clustering summary for `graph`.  See documentation on
    // `XlaAutoClusteringSummary` for details.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top