Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,960 for usedBy (0.32 sec)

  1. 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)
  2. pkg/test/framework/components/echo/calloptions.go

    	// If there are multiple workloads in the Instance, the first is used.
    	// Can be used with `ToWorkload: to.WithWorkloads(someWl)` to send to a specific workload.
    	// When using the Port field, the ServicePort should be used.
    	ToWorkload Instance
    
    	// Port to be used for the call. Ignored if Scheme == DNS. If the Port.ServicePort is set,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

                    "Type 'java.net.URL' is not supported on properties annotated with @Input because Java Serialization can be inconsistent for this type",
                'validation_problems', 'unsupported_value_type')
            expectThatExecutionOptimizationDisabledWarningIsDisplayed(executer,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/maven/conf/settings.xml

      <!-- proxies
       | This is a list of proxies which can be used on this machine to connect to the network.
       | Unless otherwise specified (by system property or command-line switch), the first proxy
       | specification in this list marked as active will be used.
       |-->
      <proxies>
        <!-- proxy
         | Specification for one proxy, to be used in connecting to the network.
         |
        <proxy>
          <id>optional</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. 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)
  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. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

     * just as they would be on the command line.
     * <p>
     * The {@link #build()} method can be used to invoke the build when it is expected to succeed,
     * while the {@link #buildAndFail()} method can be used when the build is expected to fail.
     * <p>
     * GradleRunner instances are not thread safe and cannot be used concurrently.
     * However, multiple instances are able to be used concurrently.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top