Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 590 for cheese (0.1 sec)

  1. src/cmd/vendor/golang.org/x/text/language/doc.go

    //
    //	var matcher = language.NewMatcher([]language.Tag{
    //	    language.English,   // The first language is used as fallback.
    //	    language.MustParse("en-AU"),
    //	    language.Danish,
    //	    language.Chinese,
    //	})
    //
    // This list of supported languages is typically implied by the languages for
    // which there exists translations of the user interface.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. docs/fr/docs/tutorial/index.md

        ```
        pip install fastapi
        ```
    
        Installez également `uvicorn` pour qu'il fonctionne comme serveur :
    
        ```
        pip install uvicorn
        ```
    
        Et la même chose pour chacune des dépendances facultatives que vous voulez utiliser.
    
    ## Guide utilisateur avancé
    
    Il existe également un **Guide d'utilisation avancé** que vous pouvez lire plus tard après ce **Tutoriel - Guide d'utilisation**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:55 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * {@link Session#resolveDependencies resolveDependencies(...)} when at least one dependency
         * cannot be associated to any type specified in the {@code desiredTypes} argument.
         * Plugins can choose to report a warning to users when unresolved paths exist.
         */
        PathType UNRESOLVED = new PathType() {
            @Override
            public String name() {
                return "UNRESOLVED";
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/runtime/race/testdata/select_test.go

    	}()
    	_ = x
    	<-done
    }
    
    // The idea behind this test:
    // there are two variables, access to one
    // of them is synchronized, access to the other
    // is not.
    // Select must (unconditionally) choose the non-synchronized variable
    // thus causing exactly one race.
    // Currently this test doesn't look like it accomplishes
    // this goal.
    func TestRaceSelect5(t *testing.T) {
    	done := make(chan bool, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 05:25:54 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/scope_internal.h

      const string& name() const { return name_; }
      const std::vector<Operation>& control_deps() const { return control_deps_; }
    
     private:
      friend class Scope;
    
      // Tag types to choose the constructor to dispatch.
      struct Tags {
        enum class ScopeName;
        enum class OpName;
        enum class ControlDeps;
        enum class Device;
        enum class SingleUseScope;
        enum class ExitOnError;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

           *
           * 1. On Android, querying a WeakReference blocks if the GC is doing an otherwise-concurrent
           * pass.
           *
           * 2. We would probably choose to compare exceptions using == instead of equals() (for
           * consistency with how weak references are cleared). That's a behavior change -- arguably the
           * removal of a feature.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantMapping.java

                if ("compile".equals(scope) || "runtime".equals(scope)) {
                    return scope;
                }
                throw new InvalidUserCodeException("Invalid Maven scope '" + scope + "'. You must choose between 'compile' and 'runtime'");
            }
    
            public boolean shouldPublish() {
                return !skip;
            }
    
            public String getMavenScope() {
                return mavenScope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/OutputUnpacker.java

                        // We could support an unfiltered DirectoryFileTree here as a cacheable root,
                        // but because @OutputDirectory also doesn't support it we choose not to.
                        consumer.accept(new DirectoryTreeOutputFilePropertySpec(
                            propertyName + "$" + index.incrementAndGet(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:56 UTC 2022
    - 9K bytes
    - Viewed (0)
  9. cmd/kube-apiserver/app/options/validation.go

    			errs = append(errs, err)
    		}
    	}
    
    	secondaryServiceClusterIPRangeUsed := (options.SecondaryServiceClusterIPRange.IP != nil)
    	// note: While the cluster might be dualstack (i.e. pods with multiple IPs), the user may choose
    	// to only ingress traffic within and into the cluster on one IP family only. this family is decided
    	// by the range set on --service-cluster-ip-range. If/when the user decides to use dual stack services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. docs/hotfixes.md

    ## Creating a hotfix branch
    
    Customers in MinIO are allowed LTS on any release they choose to standardize. Production setups seldom change and require maintenance. Hotfix branches are such maintenance branches that allow customers to operate a production cluster without drastic changes to their deployment.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top