Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 490 for Consumes (0.28 sec)

  1. api/openapi-spec/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.NodeAddress"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    type Interface interface {
    	// Stop tells the producer that the consumer is done watching, so the
    	// producer should stop sending events and close the result channel. The
    	// consumer should keep watching for events until the result channel is
    	// closed.
    	//
    	// Because some implementations may create channels when constructed, Stop
    	// must always be called, even if the consumer has not yet called
    	// ResultChan().
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  3. src/mime/mediatype.go

    	return encv, true
    }
    
    func isNotTokenChar(r rune) bool {
    	return !isTokenChar(r)
    }
    
    // consumeToken consumes a token from the beginning of provided
    // string, per RFC 2045 section 5.1 (referenced from 2183), and return
    // the token consumed and the rest of the string. Returns ("", v) on
    // failure to consume at least one character.
    func consumeToken(v string) (token, rest string) {
    	notPos := strings.IndexFunc(v, isNotTokenChar)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingManagerInternal.java

         */
        @Override
        LoggingManagerInternal stop();
    
        /**
         * Consumes logging from System.out and System.err and Java util logging.
         */
        LoggingManagerInternal captureSystemSources();
    
        /**
         * Sets the log level to capture stdout at. Does not enable capture.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                blockingServer.expectConcurrent(":b:cPing")
                run ":a:aPing", ":b:cPing"
            }
        }
    
        def "explicit task dependency relationships are honored even if it violates destroys/creates/consumes relationships"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
                def foo = file("foo")
    
                aPing.destroyables.register foo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    2. Explicitly declare the association between the task and the service via the link:{javadocPath}/org/gradle/api/Task.html#usesService-org.gradle.api.provider.Provider-[Task.usesService].
    
    Here is an example of a task that consumes the previous service via a property annotated with `@Internal`:
    
    ====
    [source.multi-language-sample,java]
    .Download.java
    ----
    include::{snippetsPath}/plugins/buildService/groovy/buildSrc/src/main/java/Download.java[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    //   // In the first phase we try to merge islands with their nearest consumer
    //   // iff the consumer is another island.
    //   // Note: A consumer is an operation that consumes one of our outputs.
    //   changed |= tryMergedIslandsIntoNearestConsumer();
    //
    //   // In the second phase we try to merge islands with their nearest producer
    //   // of a value they consume, iff the producer is another island.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. src/encoding/json/decode.go

    		i += len("alse")
    	case 'n': // null
    		i += len("ull")
    	}
    	if i < len(data) {
    		d.opcode = stateEndValue(&d.scan, data[i])
    	} else {
    		d.opcode = scanEnd
    	}
    	d.off = i + 1
    }
    
    // value consumes a JSON value from d.data[d.off-1:], decoding into v, and
    // reads the following byte ahead. If v is invalid, the value is discarded.
    // The first byte of the value has been read already.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

        EnablePassIRPrinting(runtime_lowering, kDebugGroupRuntimeLowering,
                             module_name);
      }
    
      // Ignore the result since diag_handler consumes it
      LogicalResult result = runtime_lowering.run(module);
      (void)result;
    
      if (VLOG_IS_ON(1) ||
          DEBUG_DATA_DUMPER()->ShouldDump(module_name.str(), kDebugGroupMain)) {
        ::tensorflow::DumpMlirOpToFile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/runtime/tracebuf.go

    	buf.pos += copy(buf.arr[buf.pos:], s)
    }
    
    func (buf *traceBuf) available(size int) bool {
    	return len(buf.arr)-buf.pos >= size
    }
    
    // varintAt writes varint v at byte position pos in buf. This always
    // consumes traceBytesPerNumber bytes. This is intended for when the caller
    // needs to reserve space for a varint but can't populate it until later.
    // Use varintReserve to reserve this space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top