Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 142 for predefined (0.19 sec)

  1. src/flag/flag_test.go

    		flagSetName string
    		errorMsg    string
    	}{
    		{
    			flagSetName: "",
    			errorMsg:    "flag redefined: foo",
    		},
    		{
    			flagSetName: "fs",
    			errorMsg:    "fs flag redefined: foo",
    		},
    	}
    
    	for _, test := range tests {
    		testName := fmt.Sprintf("flag redefined in FlagSet(%q)", test.flagSetName)
    
    		fs := NewFlagSet(test.flagSetName, ContinueOnError)
    		buf := &strings.Builder{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

        @Inject
        SettingsBuilder settingsBuilder;
    
        @Inject
        ToolchainsBuilder toolchainsBuilder;
    
        @BeforeEach
        void setup() {
            // create session with any local repo, is redefined anyway below
            RepositorySystemSession rss = new MavenSessionBuilderSupplier(repositorySystem)
                    .get()
                    .withLocalRepositoryBaseDirectories(new File("target").toPath())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/unicode/utf16/utf16_test.go

    // license that can be found in the LICENSE file.
    
    package utf16_test
    
    import (
    	"internal/testenv"
    	"reflect"
    	"testing"
    	"unicode"
    	. "unicode/utf16"
    )
    
    // Validate the constants redefined from unicode.
    func TestConstants(t *testing.T) {
    	if MaxRune != unicode.MaxRune {
    		t.Errorf("utf16.maxRune is wrong: %x should be %x", MaxRune, unicode.MaxRune)
    	}
    	if ReplacementChar != unicode.ReplacementChar {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. ci/official/utilities/setup.sh

    # $TFCI_OUTPUT_DIR/script.log
    exec > >(tee "$TFCI_OUTPUT_DIR/script.log") 2>&1
    
    # Setup tfrun, a helper function for executing steps that can either be run
    # locally or run under Docker. setup_docker.sh, below, redefines it as "docker
    # exec".
    # Important: "tfrun foo | bar" is "( tfrun foo ) | bar", not "tfrun (foo | bar)".
    # Therefore, "tfrun" commands cannot include pipes -- which is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.PodTemplate": {
          "description": "PodTemplate describes a template for creating copies of a predefined pod.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. docs/fr/docs/deployment/manually.md

    ## Concepts de déploiement
    
    Ces exemples lancent le programme serveur (e.g. Uvicorn), démarrant **un seul processus**, sur toutes les IPs (`0.0.
    0.0`) sur un port prédéfini (par example, `80`).
    
    C'est l'idée de base. Mais vous vous préoccuperez probablement de certains concepts supplémentaires, tels que ... :
    
    * la sécurité - HTTPS
    * l'exécution au démarrage
    * les redémarrages
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 04 12:02:09 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. docs/fr/docs/tutorial/query-params.md

    * `skip`, un `int` avec comme valeur par défaut `0`.
    * `limit`, un `int` optionnel.
    
    !!! tip "Astuce"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/unicode/utf8/utf8_test.go

    	"bytes"
    	"strings"
    	"testing"
    	"unicode"
    	. "unicode/utf8"
    )
    
    // Validate the constants redefined from unicode.
    func init() {
    	if MaxRune != unicode.MaxRune {
    		panic("utf8.MaxRune is wrong")
    	}
    	if RuneError != unicode.ReplacementChar {
    		panic("utf8.RuneError is wrong")
    	}
    }
    
    // Validate the constants redefined from unicode.
    func TestConstants(t *testing.T) {
    	if MaxRune != unicode.MaxRune {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  9. src/text/template/template.go

    // Named template definitions ({{define ...}} or {{block ...}} statements) in text
    // define additional templates associated with t and are removed from the
    // definition of t itself.
    //
    // Templates can be redefined in successive calls to Parse.
    // A template definition with a body containing only white space and comments
    // is considered empty and will not replace an existing template's body.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_TUPLE_H_
    
    #include <utility>  // For ::std::pair.
    
    // The compiler used in Symbian has a bug that prevents us from declaring the
    // tuple template as a friend (it complains that tuple is redefined).  This
    // hack bypasses the bug by declaring the members that should otherwise be
    // private as public.
    // Sun Studio versions < 12 also have the above bug.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top