Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 142 for predefined (0.2 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGeneratorConfiguration.groovy

            }
        }
    
        TestProjectGeneratorConfigurationBuilder composite(boolean predifined) {
            this.compositeBuild = CompositeConfiguration.composite(predifined)
            return this
        }
    
        TestProjectGeneratorConfiguration create() {
            TestProjectGeneratorConfiguration config = new TestProjectGeneratorConfiguration()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/asm/doc.go

    The specified file must be a Go assembly file.
    The same assembler is used for all target operating systems and architectures.
    The GOOS and GOARCH environment variables set the desired target.
    
    Flags:
    
    	-D name[=value]
    		Predefine symbol name with an optional simple value.
    		Can be repeated to define multiple symbols.
    	-I dir1 -I dir2
    		Search for #include files in dir1, dir2, etc,
    		after consulting $GOROOT/pkg/$GOOS_$GOARCH.
    	-S
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:46:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. docs/fr/docs/advanced/additional-responses.md

    Tout sera combiné et inclus dans votre OpenAPI, et affiché dans la documentation de l'API :
    
    <img src="/img/tutorial/additional-responses/image01.png">
    
    ## Combinez les réponses prédéfinies et les réponses personnalisées
    
    Vous voulez peut-être avoir des réponses prédéfinies qui s'appliquent à de nombreux *paramètre de chemin*, mais vous souhaitez les combiner avec des réponses personnalisées nécessaires à chaque *opération de chemin*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. src/internal/syscall/unix/nonblocking_wasip1.go

    }
    
    func HasNonblockFlag(flag int) bool {
    	return flag&syscall.FDFLAG_NONBLOCK != 0
    }
    
    // This helper is implemented in the syscall package. It means we don't have
    // to redefine the fd_fdstat_get host import or the fdstat struct it
    // populates.
    //
    //go:linkname fd_fdstat_get_flags syscall.fd_fdstat_get_flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:12:04 UTC 2023
    - 787 bytes
    - Viewed (0)
  5. src/cmd/asm/internal/lex/input.go

    		includes:        append([]string{filepath.Dir(name)}, flags.I...),
    		beginningOfLine: true,
    		macros:          predefine(flags.D),
    	}
    }
    
    // predefine installs the macros set by the -D flag on the command line.
    func predefine(defines flags.MultiFlag) map[string]*Macro {
    	macros := make(map[string]*Macro)
    	for _, name := range defines {
    		value := "1"
    		i := strings.IndexRune(name, '=')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/path-params.md

    ## Valeurs prédéfinies
    
    Si vous avez une *fonction de chemin* qui reçoit un *paramètre de chemin*, mais que vous voulez que les valeurs possibles des paramètres soient prédéfinies, vous pouvez utiliser les <abbr title="Enumeration">`Enum`</abbr> de Python.
    
    ### Création d'un `Enum`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/w-merge/pom.xml

        Verify that plugin executions defined in the parent with inherited=false are not executed in child modules.
      </description>
    
      <build>
        <plugins>
          <!-- NOTE: It's essential part of this test variant to redefine the test plugin again, i.e. trigger plugin merging -->
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-log-file</artifactId>
            <version>2.1-SNAPSHOT</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. src/net/file_wasip1.go

    	case "udp":
    		return &UDPConn{conn{fd: fd}}
    	default:
    		panic("unsupported network for file connection: " + fd.net)
    	}
    }
    
    // This helper is implemented in the syscall package. It means we don't have
    // to redefine the fd_fdstat_get host import or the fdstat struct it
    // populates.
    //
    //go:linkname fd_fdstat_get_type syscall.fd_fdstat_get_type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 23:11:39 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/html/template/clone_test.go

    		t.Errorf(`redefine "lhs": got err %v want nil`, err)
    	}
    	// Cloning t1 should fail as it has been executed.
    	if _, err := t1.Clone(); err == nil {
    		t.Error("cloning t1: got nil err want non-nil")
    	}
    	// Redefining the "lhs" template in t1 should fail as it has been executed.
    	if _, err := t1.Parse(`{{define "lhs"}} OK {{end}}`); err == nil {
    		t.Error(`redefine "lhs": got nil err want non-nil`)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.21.md

    - Specifying the KUBE_TEST_REPO environment variable when e2e tests are executed will instruct the test infrastructure to load that image from a location within the specified repo, using a predefined pattern. ([#93510](https://github.com/kubernetes/kubernetes/pull/93510), [@smarterclayton](https://github.com/smarterclayton)) [SIG Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top