Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 476 for especially (0.31 sec)

  1. docs/en/docs/fastapi-people.md

    * [Create Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}.
    * Review Pull Requests, [especially important for translations](contributing.md#translations){.internal-link target=_blank}.
    
    A round of applause to them. 👏 🙇
    
    ## FastAPI Experts
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

    		<description homepage="http://www.my.org/mymodule/">
    	This module is <b>great</b> !<br/>
    	You can use it especially with myconf1 and myconf2, and myconf4 is not too bad too.
    		</description>
    
    		<e:someExtra>56576</e:someExtra>
    	</info>
    	<configurations>
    		<conf name="myconf1" description="desc 1" e:attr2="value2"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/watch/streamwatcher.go

    		// so nonbuffered is better.
    		result: make(chan Event),
    		// If the watcher is externally stopped there is no receiver anymore
    		// and the send operations on the result channel, especially the
    		// error reporting might block forever.
    		// Therefore a dedicated stop channel is used to resolve this blocking.
    		done: make(chan struct{}),
    	}
    	go sw.receive()
    	return sw
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 06 13:42:59 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. src/math/big/sqrt.go

    	switch b % 2 {
    	case 0:
    		// nothing to do
    	case 1:
    		z.exp++
    	case -1:
    		z.exp--
    	}
    	// 0.25 <= z < 2.0
    
    	// Solving 1/x² - z = 0 avoids Quo calls and is faster, especially
    	// for high precisions.
    	z.sqrtInverse(z)
    
    	// re-attach halved exponent
    	return z.SetMantExp(z, b/2)
    }
    
    // Compute √x (to z.prec precision) by solving
    //
    //	1/t² - x = 0
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Ascii.java

       * @since 8.0
       */
      public static final byte DLE = 16;
    
      /**
       * Device Control 1. Characters for the control of ancillary devices associated with data
       * processing or telecommunication systems, more especially switching devices "on" or "off." (If a
       * single "stop" control is required to interrupt or turn off ancillary devices, DC4 is the
       * preferred assignment.)
       *
       * @since 8.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/OutputUnpacker.java

            }
        }
    
        public boolean hasDeclaredOutputs() {
            return hasDeclaredOutputs;
        }
    
        /**
         * Resolves the given output file property to individual property specs.
         *
         * Especially, values of type {@link Map} are resolved.
         */
        private static void resolveOutputFilePropertySpecs(
            String ownerDisplayName,
            String propertyName,
            PropertyValue value,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:56 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. istioctl/pkg/authz/authz.go

    		Short: "Check AuthorizationPolicy applied in the pod.",
    		Long: `Check prints the AuthorizationPolicy applied to a pod by directly checking
    the Envoy configuration of the pod. The command is especially useful for inspecting
    the policy propagation from Istiod to Envoy and the final AuthorizationPolicy list merged
    from multiple sources (mesh-level, namespace-level and workload-level).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/PublicApiCorrectnessTest.java

                // Mixing these custom types with java.util.function types would make the public API harder to use, especially for plugin authors.
                .or(resideInAnyPackage("java.lang", "java.util", "java.util.concurrent", "java.util.regex", "java.lang.reflect", "java.io")
                    .or(type(byte[].class))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/internal/goexperiment/flags.go

    //
    // Note that this package defines the set of experiments (in Flags)
    // and records the experiments that were enabled when the package
    // was compiled (as boolean and integer constants).
    //
    // Note especially that this package does not itself change behavior
    // at run time based on the GOEXPERIMENT variable.
    // The code used in builds to interpret the GOEXPERIMENT variable
    // is in the separate package internal/buildcfg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. docs/security/README.md

    MinIO does not assume or require that the client-provided key is unique. It may be used for multiple objects or buckets. Especially a single client-provided key may be used for all objects - even though all objects must be treated as compromised if that key is ever compromised.
    
    #### Key rotation
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
Back to top