Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,190 for createId (0.2 sec)

  1. src/runtime/runtime-lldb_test.go

    sys.path.append(sys.argv[1])
    import lldb
    import os
    
    TIMEOUT_SECS = 5
    
    debugger = lldb.SBDebugger.Create()
    debugger.SetAsync(True)
    target = debugger.CreateTargetWithFileAndArch("a.exe", None)
    if target:
      print "Created target"
      main_bp = target.BreakpointCreateByLocation("main.go", 10)
      if main_bp:
        print "Created breakpoint"
      process = target.LaunchSimple(None, None, os.getcwd())
      if process:
        print "Process launched"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentSourcesIntegrationTest.groovy

        }
    
        def "elements in component.sources should not be created when defined"() {
            when:
            buildFile << """
                model {
                    components {
                        main {
                            sources {
                                ss1(CustomLanguageSourceSet) {
                                    println "created ss1"
                                }
                                beforeEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

        ViewBuilder<T> mixInTo(Class<?> targetType, Object mixIn);
    
        /**
         * Mixes the given type into all views of the given type created using {@link #build(Object)}.
         * Applied to all views reachable from created views.
         *
         * An instance of the class is created for each view of the given type that is created. The class should have a constructor that accepts the view as a parameter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/loader.h

    /// to be loaded is identified by the supplied tags, corresponding exactly to
    /// the set of tags used at SavedModel build time. Stores a SavedModel bundle
    /// in *bundle with a session created from the requested MetaGraphDef if found.
    ///
    /// This overload creates a SavedModelBundleLite, which consumes less RAM than
    /// an equivalent SavedModelBundle.
    Status LoadSavedModel(const SessionOptions& session_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. docs/multi-user/admin/README.md

          "Sid": ""
        }
      ]
    }
    EOF
    ```
    
    Create new canned policy by name `userManager` using `userManager.json` policy file.
    
    ```
    mc admin policy attach myminio userManager adminManageUser.json
    ```
    
    Create a new admin user `admin1` on MinIO use `mc admin user`.
    
    ```
    mc admin user add myminio admin1 admin123
    ```
    
    Once the user is successfully created you can now apply the `userManage` policy for this user.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

         * @param factory Instance created by the Factory implementation
         */
        public synchronized <T> T withSystemProperty(String propertyName, String value, Factory<T> factory) {
            String originalValue = overrideProperty(propertyName, value);
    
            try {
                return factory.create();
            } finally {
                restoreProperty(propertyName, originalValue);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/log/slog/record.go

    )
    
    const nAttrsInline = 5
    
    // A Record holds information about a log event.
    // Copies of a Record share state.
    // Do not modify a Record after handing out a copy to it.
    // Call [NewRecord] to create a new Record.
    // Use [Record.Clone] to create a copy with no shared state.
    type Record struct {
    	// The time at which the output method (Log, Info, etc.) was called.
    	Time time.Time
    
    	// The log message.
    	Message string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:30:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/DuplicatesStrategy.java

         */
        EXCLUDE,
    
        /**
         * Do not attempt to prevent duplicates, but log a warning message when multiple items
         * are to be created at the same path.
         * <p>
         * This behaves exactly as INCLUDE otherwise.
         */
        WARN,
    
        /**
         * Throw a {@link DuplicateFileCopyingException} when subsequent items are to be created at the same path.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 18 17:47:56 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-create-syscall-reuse-thread-id.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 652 bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-go-create-without-running-g.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 446 bytes
    - Viewed (0)
Back to top