Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,729 for ninit (0.04 sec)

  1. samples/bookinfo/src/mysql/mysqldb-init.sql

    # Initialize a mysql db with a 'test' db and be able test productpage with it.
    # mysql -h 127.0.0.1 -ppassword < mysqldb-init.sql
    
    CREATE DATABASE test;
    USE test;
    
    CREATE TABLE `ratings` (
      `ReviewID` INT NOT NULL,
      `Rating` INT,
      PRIMARY KEY (`ReviewID`)
    );
    INSERT INTO ratings (ReviewID, Rating) VALUES (1, 5);
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 04:15:20 UTC 2018
    - 370 bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/GradlePluginIntegrationTest.groovy

            setup:
            def externalInitFile = temporaryFolder.createFile("initscripts/somePath/anInit.gradle")
            externalInitFile << """
            buildFinished {
                println "Gradle Plugin received build finished!"
            }
            """
            when:
            initFile << """
            apply from: "somePath/anInit.gradle"
            """
            then:
            def executed = succeeds('tasks')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:31:11 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  3. operator/cmd/mesh/operator-init.go

    }
    
    func operatorInitCmd(ctx cli.Context, rootArgs *RootArgs, oiArgs *operatorInitArgs) *cobra.Command {
    	return &cobra.Command{
    		Use:   "init",
    		Short: "Installs the Istio operator controller in the cluster.",
    		Long:  "The init subcommand installs the Istio operator controller in the cluster.",
    		Args:  cobra.ExactArgs(0),
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/custom-logger-init.gradle

    class CustomLogger extends BuildAdapter implements BuildListener, ProjectEvaluationListener, TaskExecutionListener, TaskActionListener {
        def logger = Logging.getLogger('init-script')
    
        public void buildFinished(BuildResult result) {
            logger.info("LOGGER: build finished")
            println 'init callback quiet out'
        }
    
        public void beforeEvaluate(Project project) {
            logger.lifecycle("LOGGER: evaluating $project.path")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/systemProperties/groovy/init.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 59 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/gradleProperties/groovy/init.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 401 bytes
    - Viewed (0)
  7. internal/once/init.go

    // initialized when the provided function returns nil.
    
    // Init represents the structure.
    type Init struct {
    	done uint32
    	m    sync.Mutex
    }
    
    // Do is similar to sync.Once.Do - makes one successful
    // call to the function. ie, it invokes the function
    // if it is not successful yet.
    func (l *Init) Do(f func() error) error {
    	if atomic.LoadUint32(&l.done) == 0 {
    		return l.do(f)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 04:20:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildCache/configure-by-init-script/groovy/init.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 270 bytes
    - Viewed (0)
  9. buildscripts/cross-compile.sh

    #!/bin/bash
    
    set -e
    # Enable tracing if set.
    [ -n "$BASH_XTRACEFD" ] && set -x
    
    function _init() {
    	## All binaries are static make sure to disable CGO.
    	export CGO_ENABLED=0
    
    	## List of architectures and OS to test coss compilation.
    	SUPPORTED_OSARCH="linux/ppc64le linux/mips64 linux/amd64 linux/arm64 linux/s390x darwin/arm64 darwin/amd64 freebsd/amd64 windows/amd64 linux/arm linux/386 netbsd/amd64 linux/mips openbsd/amd64"
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 19 01:08:22 UTC 2023
    - 958 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/initScripts/configurationInjection/groovy/init.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
Back to top