Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,797 for usedBy (0.17 sec)

  1. fastapi/routing.py

                Doc(
                    """
                    Default function handler for this router. Used to handle
                    404 Not Found errors.
                    """
                ),
            ] = None,
            dependency_overrides_provider: Annotated[
                Optional[Any],
                Doc(
                    """
                    Only used internally by FastAPI to handle dependency overrides.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  2. 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)
  3. src/encoding/pem/pem.go

    type lineBreaker struct {
    	line [pemLineLength]byte
    	used int
    	out  io.Writer
    }
    
    var nl = []byte{'\n'}
    
    func (l *lineBreaker) Write(b []byte) (n int, err error) {
    	if l.used+len(b) < pemLineLength {
    		copy(l.line[l.used:], b)
    		l.used += len(b)
    		return len(b), nil
    	}
    
    	n, err = l.out.Write(l.line[0:l.used])
    	if err != nil {
    		return
    	}
    	excess := pemLineLength - l.used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/apis/core/annotation_key_constants.go

    	// SeccompProfileRuntimeDefault represents the default seccomp profile used by container runtime.
    	// Deprecated: set a pod or container security context `seccompProfile` of type "RuntimeDefault" instead.
    	SeccompProfileRuntimeDefault string = "runtime/default"
    
    	// DeprecatedSeccompProfileDockerDefault represents the default seccomp profile used by docker.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. pkg/xds/monitoring.go

    		"Total number of XDS requests with an expired nonce.",
    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	cdsReject = monitoring.NewGauge(
    		"pilot_xds_cds_reject",
    		"Pilot rejected CDS configs.",
    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	edsReject = monitoring.NewGauge(
    		"pilot_xds_eds_reject",
    		"Pilot rejected EDS.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. 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)
  7. pkg/test/framework/resource/settings.go

    	SkipString  ArrayFlags
    	SkipMatcher *Matcher
    
    	// SkipWorkloadClasses can be used to skip deploying special workload types like TPROXY, VMs, etc.
    	SkipWorkloadClasses ArrayFlags
    
    	// OnlyWorkloadClasses can be used to only deploy specific workload types like TPROXY, VMs, etc.
    	OnlyWorkloadClasses ArrayFlags
    
    	// The label selector, in parsed form.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/cache/CacheConfigurations.java

    @Incubating
    public interface CacheConfigurations {
    
        /**
         * Configures caching for wrapper distributions that are released Gradle versions.  By default, released
         * distributions are removed after 30 days of not being used.
         */
        void releasedWrappers(Action<? super CacheResourceConfiguration> cacheConfiguration);
    
        /**
         * Returns the cache configuration for wrapper distributions that are released Gradle versions.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/internal/objabi/reloctype.go

    	R_CALLARM
    	R_CALLARM64
    	R_CALLIND
    	R_CALLPOWER
    	// R_CALLMIPS (only used on mips64) resolves to non-PC-relative target address
    	// of a CALL (JAL) instruction, by encoding the address into the instruction.
    	R_CALLMIPS
    	R_CONST
    	R_PCREL
    	// R_TLS_LE, used on 386, amd64, and ARM, resolves to the offset of the
    	// thread-local symbol from the thread local base and is used to implement the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    * types used in super classes or interfaces
    * types used in public method parameters, including generic parameter types (where _public_ is something that is visible to compilers. I.e. , _public_, _protected_ and _package private_ members in the Java world)
    * types used in public fields
    * public annotation types
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top