Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,739 for usedBy (0.2 sec)

  1. src/internal/types/testdata/check/builtins0.go

    	close(r /* ERROR "receive-only channel" */)
    	close(c)
    	_ = close /* ERROR "used as value" */ (c)
    
    	var s []chan int
    	close(s... /* ERROR "invalid use of ..." */ )
    }
    
    func close2() {
    	f1 := func() (ch chan int) { return }
    	f2 := func() (ch chan int, x int) { return }
    	close(f0 /* ERROR "used as value" */ ())
    	close(f1())
    	close(f2()) // ERROR "too many arguments"
    }
    
    func complex1() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Required to be unique across all JWT authenticators.
    	// Note that egress selection configuration is not used for this network connection.
    	// +required
    	URL string
    	// discoveryURL, if specified, overrides the URL used to fetch discovery
    	// information instead of using "{url}/.well-known/openid-configuration".
    	// The exact value specified is used, so "/.well-known/openid-configuration"
    	// must be included in discoveryURL if needed.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/internal/types/errors/codes.go

    	// out of bounds. It also occurs if it is used in a package
    	// compiled for a language version before go1.20.
    	//
    	// Example:
    	//  import "unsafe"
    	//
    	//  var b [10]byte
    	//  var _ = unsafe.String(&b[0], -1)
    	InvalidUnsafeString
    
    	// InvalidUnsafeStringData occurs if it is used in a package
    	// compiled for a language version before go1.20.
    	_ // not used anymore
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/Types.java

      }
    
      private static void disallowPrimitiveType(Type[] types, String usedAs) {
        for (Type type : types) {
          if (type instanceof Class) {
            Class<?> cls = (Class<?>) type;
            checkArgument(!cls.isPrimitive(), "Primitive type '%s' used as %s", cls, usedAs);
          }
        }
      }
    
      /** Returns the {@code Class} object of arrays with {@code componentType}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. pkg/config/constants/constants.go

    	// Anything else indicates it is not.
    	AmbientRedirectionEnabled = "enabled"
    
    	// AmbientUseWaypointLabelLabel is the label used to specify which waypoint should be used for a given pod, service, etc...
    	AmbientUseWaypointLabel = "istio.io/use-waypoint"
    	// AmbientWaypointForTrafficTypeLabel is the label used to specify which traffic is allowed through the Waypoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// out of bounds. It also occurs if it is used in a package
    	// compiled for a language version before go1.20.
    	//
    	// Example:
    	//  import "unsafe"
    	//
    	//  var b [10]byte
    	//  var _ = unsafe.String(&b[0], -1)
    	InvalidUnsafeString
    
    	// InvalidUnsafeStringData occurs if it is used in a package
    	// compiled for a language version before go1.20.
    	_ // not used anymore
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                resolve.expectGraph {
                    root(":", ":test:") {
                        module('org.test:module:1.0')
                    }
                }
            } else {
                fails ':checkDeps'
                if (useIvy() && !isGradleMetadataPublished()) {
                    failure.assertHasCause("Configuration 'default' in org.test:module:1.0 does not match the consumer attributes")
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // DT_FLOAT, DT_HALF, DT_QINT8, and DT_QUINT8. When DT_HALF is used, the
      // `weight_quantization` flag needs to set to true. When DT_QUINT8 is used,
      // the `weight_quantization` flag needs to set to false.
      tensorflow::DataType inference_type = tensorflow::DT_FLOAT;
    
      // The input and output data type during inference. This flag is only used
      // when `inference_type` is different from DT_FLOAT. This flag can only be set
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.proto

      // CanonicalName for the workload. Used for telemetry.
      string canonical_name = 10;
      // CanonicalRevision for the workload. Used for telemetry.
      string canonical_revision = 11;
      // WorkloadType represents the type of the workload. Used for telemetry.
      WorkloadType workload_type = 12;
      // WorkloadName represents the name for the workload (of type WorkloadType). Used for telemetry.
      string workload_name = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

        def setup() {
            expectReindentedValidationMessage()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13333")
        def "absent #operator orElse #orElseKind used as task input"() {
    
            assumeFalse(
                'task dependency inference for orElse(taskOutput) not implemented yet!',
                orElseKind == 'task output'
            )
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top