Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 474 for convenient (0.17 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

        }
    
        @Override
        public boolean isCancelled() {
          return delegate.isCancelled();
        }
      }
    
      /**
       * A {@link Scheduler} that provides a convenient way for the {@link AbstractScheduledService} to
       * use a dynamically changing schedule. After every execution of the task, assuming it hasn't been
       * cancelled, the {@link #getNextSchedule} method will be called.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  2. src/internal/trace/summary.go

    				// case, we create a fake region description with the
    				// task id. This isn't strictly necessary as this
    				// goroutine may not be associated with the task, but
    				// it can be convenient to see all children created
    				// during a region.
    				//
    				// N.B. ev.Goroutine() will always be NoGoroutine for the
    				// Undetermined case, so this is will simply not fire.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableBiMap.java

       *         .put("two", 2)
       *         .put("three", 3)
       *         .buildOrThrow();
       * }</pre>
       *
       * <p>For <i>small</i> immutable bimaps, the {@code ImmutableBiMap.of()} methods are even more
       * convenient.
       *
       * <p>By default, a {@code Builder} will generate bimaps that iterate over entries in the order
       * they were inserted into the builder. For example, in the above example, {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 16:03:42 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	"math/big"
    	"strconv"
    	"strings"
    
    	cbor "k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct"
    
    	inf "gopkg.in/inf.v0"
    )
    
    // Quantity is a fixed-point representation of a number.
    // It provides convenient marshaling/unmarshaling in JSON and YAML,
    // in addition to String() and AsInt64() accessors.
    //
    // The serialization format is:
    //
    // ```
    // <quantity>        ::= <signedNumber><suffix>
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    //
    //	-v
    //
    // Print verbose output, showing each run and its match lines.
    //
    // In addition to these general flags,
    // bisect supports a few “shortcut” flags that make it more convenient
    // to use with specific targets.
    //
    //	-compile=<rewrite>
    //
    // This flag is equivalent to adding an environment variable
    // “GOCOMPILEDEBUG=<rewrite>hash=PATTERN”,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_2x.md

        ```java
        Headers headers = Headers.of(name1, value1, name2, value2, ...).
        ```
    
     *  New: Make the content-type header optional for request bodies.
     *  New: `Response.isSuccessful()` is a convenient API to check response codes.
     *  New: The response body can now be read outside of the callback. Response
        bodies must always be closed, otherwise they will leak connections!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    	// "suffix" is an optional string that can be used to determine which patches are applied
    	// first alpha-numerically.
    	Directory string
    }
    
    // DocumentMap is a convenient way to describe a map between a YAML document and its GVK type
    // +k8s:deepcopy-gen=false
    type DocumentMap map[schema.GroupVersionKind][]byte
    
    // ComponentConfig holds a known component config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // value is also printed; when T is a (const) char pointer, both the
    // pointer value and the NUL-terminated string it points to are
    // printed.
    //
    // We also provide some convenient wrappers:
    //
    //   // Prints a value to a string.  For a (const or not) char
    //   // pointer, the NUL-terminated string (but not the pointer) is
    //   // printed.
    //   std::string ::testing::PrintToString(const T& value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  9. docs/recipes.md

    ### Synchronous Get ([.kt][SynchronousGetKotlin], [.java][SynchronousGetJava])
    
    Download a file, print its headers, and print its response body as a string.
    
    The `string()` method on response body is convenient and efficient for small documents. But if the response body is large (greater than 1 MiB), avoid `string()` because it will load the entire document into memory. In that case, prefer to process the body as a stream.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  10. src/database/sql/fakedb_test.go

    // fakeDriverString is like driver.String, but indirects pointers like
    // DefaultValueConverter.
    //
    // This could be surprising behavior to retroactively apply to
    // driver.String now that Go1 is out, but this is convenient for
    // our TestPointerParamsAndScans.
    type fakeDriverString struct{}
    
    func (fakeDriverString) ConvertValue(v any) (driver.Value, error) {
    	switch c := v.(type) {
    	case string, []byte:
    		return v, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top