Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 314 for Empties (0.35 sec)

  1. src/internal/reflectlite/value.go

    	//	- flagStickyRO: obtained via unexported not embedded field, so read-only
    	//	- flagEmbedRO: obtained via unexported embedded field, so read-only
    	//	- flagIndir: val holds a pointer to the data
    	//	- flagAddr: v.CanAddr is true (implies flagIndir)
    	// Value cannot represent method values.
    	// The next five bits give the Kind of the value.
    	// This repeats typ.Kind() except for method values.
    	// The remaining 23+ bits give a method number for method values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/log/slog/value.go

    	// is not preserved).
    	// If any is of type stringptr, then the Kind is String and the string value
    	// consists of the length in num and the pointer in any.
    	// Otherwise, the Kind is Any and any is the value.
    	// (This implies that Attrs cannot store values of type Kind, *time.Location
    	// or stringptr.)
    	any any
    }
    
    type (
    	stringptr *byte // used in Value.any when the Value is a string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    include::sample[dir="snippets/ide/eclipse/groovy",files="build.gradle[tags=wtp-with-xml]"]
    ====
    
    [[sec:test-sources]]
    == Separation of test classpath entries
    
    Eclipse defines only one classpath per project which implies limitations on how Gradle projects can be mapped.
    Eclipse 4.8 introduced the concept of link:https://www.eclipse.org/eclipse/news/4.8/jdt.php#jdt-test-sources[test sources].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  4. src/internal/types/errors/codes.go

    // and end with a noun identifying the relevant language object. For example,
    // "_DuplicateDecl" or "_InvalidSliceExpr". For brevity, naming follows the
    // convention that "bad" implies a problem with syntax, and "invalid" implies a
    // problem with types.
    
    const (
    	// InvalidSyntaxTree occurs if an invalid syntax tree is provided
    	// to the type checker. It should never happen.
    	InvalidSyntaxTree Code = -1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "group": {
                "description": "group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".",
                "type": "string"
              },
              "kind": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	// it will wait, at most, for the specified duration and allow these
    	// active watch requests to drain with some rate limiting in effect.
    	// The default is zero, which implies the apiserver will not keep
    	// track of active watch request(s) in flight and will not wait
    	// for them to drain, this maintains backward compatibility.
    	// This grace period is orthogonal to other grace periods, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * as {@code execute} and {@code invokeAny}, are implemented in terms of calls to {@code
       * delegate.execute}. All other methods are forwarded unchanged to the delegate. This implies that
       * the returned {@code ListeningExecutorService} never calls the delegate's {@code submit}, {@code
       * invokeAll}, and {@code invokeAny} methods, so any special handling of tasks must be implemented
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. pilot/pkg/model/context.go

    	InterceptionNone TrafficInterceptionMode = "NONE"
    
    	// InterceptionTproxy implies traffic intercepted by IPtables with TPROXY mode
    	InterceptionTproxy TrafficInterceptionMode = "TPROXY"
    
    	// InterceptionRedirect implies traffic intercepted by IPtables with REDIRECT mode
    	// This is our default mode
    	InterceptionRedirect TrafficInterceptionMode = "REDIRECT"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  9. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * as {@code execute} and {@code invokeAny}, are implemented in terms of calls to {@code
       * delegate.execute}. All other methods are forwarded unchanged to the delegate. This implies that
       * the returned {@code ListeningExecutorService} never calls the delegate's {@code submit}, {@code
       * invokeAll}, and {@code invokeAny} methods, so any special handling of tasks must be implemented
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "cannot inject shared build service without a name when multiple services exist"() {
            given:
            serviceImplementation()
            // unnamed service implies type-based lookup
            customTaskUsingServiceViaProperty("@${ServiceReference.name}")
            buildFile """
                gradle.sharedServices.registerIfAbsent("counter1", CountingService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top