Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,958 for createId (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tests/test_tutorial/test_path_operation_configurations/test_tutorial005_py310.py

                                        }
                                    }
                                },
                            },
                        },
                        "summary": "Create an item",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. tests/associations_belongs_to_test.go

    	}
    
    	if company.ID == 0 {
    		t.Fatalf("Company's ID should be created")
    	}
    
    	if err := DB.Model(&user2).Association("Manager").Append(manager); err != nil {
    		t.Fatalf("Error happened when append Manager, got %v", err)
    	}
    
    	if manager.ID == 0 {
    		t.Fatalf("Manager's ID should be created")
    	}
    
    	user.Company = company
    	user.Manager = manager
    	user.CompanyID = &company.ID
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/PolymorphicDomainObjectContainer.java

         *
         * @param type the type of the domain object to be created
         *
         * @param <U> the type of the domain object to be created
         *
         * @return the created domain object
         *
         * @throws InvalidUserDataException if a domain object with the specified name already exists
         * or the container does not support creating a domain object with the specified type
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
Back to top