Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 262 for priority (0.21 sec)

  1. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java

     * all elements in priority order and place them in another collection.
     *
     * <p>Operations on this class make no guarantees about the ordering of elements with equal
     * priority. If you need to enforce an ordering, you can define custom classes or comparators that
     * use a secondary key to break ties in primary priority values. For example, here is a class that
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 19.5K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

                is a Python reserved keyword or similar.
                """
            ),
        ] = None,
        alias_priority: Annotated[
            Union[int, None],
            Doc(
                """
                Priority of the alias. This affects whether an alias generator is used.
                """
            ),
        ] = _Unset,
        # TODO: update when deprecating Pydantic v1, import these types
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

          "00011110",
          "00011111",
          "PRIORITY",
          "END_STREAM|PRIORITY",
          "00100010",
          "00100011",
          "END_HEADERS|PRIORITY",
          "END_STREAM|END_HEADERS|PRIORITY",
          "00100110",
          "00100111",
          "00101000",
          "END_STREAM|PRIORITY|PADDED",
          "00101010",
          "00101011",
          "00101100",
          "END_STREAM|END_HEADERS|PRIORITY|PADDED",
          "00101110",
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  4. clause/delete_test.go

    		Vars    []interface{}
    	}{
    		{
    			[]clause.Interface{clause.Delete{}, clause.From{}},
    			"DELETE FROM `users`", nil,
    		},
    		{
    			[]clause.Interface{clause.Delete{Modifier: "LOW_PRIORITY"}, clause.From{}},
    			"DELETE LOW_PRIORITY FROM `users`", nil,
    		},
    	}
    
    	for idx, result := range results {
    		t.Run(fmt.Sprintf("case #%v", idx), func(t *testing.T) {
    			checkBuildClauses(t, result.Clauses, result.Result, result.Vars)
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Tue Jun 02 01:18:01 GMT 2020
    - 608 bytes
    - Viewed (0)
  5. schema/index.go

    						field.Schema.Table, subName)
    				}
    
    				if (k == "UNIQUEINDEX") || settings["UNIQUE"] != "" {
    					settings["CLASS"] = "UNIQUE"
    				}
    
    				priority, err := strconv.Atoi(settings["PRIORITY"])
    				if err != nil {
    					priority = 10
    				}
    
    				indexes = append(indexes, Index{
    					Name:    name,
    					Class:   settings["CLASS"],
    					Type:    settings["TYPE"],
    					Where:   settings["WHERE"],
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Sun Feb 04 07:49:19 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  6. internal/bucket/replication/rule.go

    	ID                      string                  `xml:"ID,omitempty" json:"ID,omitempty"`
    	Status                  Status                  `xml:"Status" json:"Status"`
    	Priority                int                     `xml:"Priority" json:"Priority"`
    	DeleteMarkerReplication DeleteMarkerReplication `xml:"DeleteMarkerReplication" json:"DeleteMarkerReplication"`
    	// MinIO extension to replicate versioned deletes
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Jan 24 23:22:20 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultMessageBuilderFactory.java

    import org.apache.maven.api.di.Inject;
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Priority;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.services.MessageBuilder;
    import org.apache.maven.api.services.MessageBuilderFactory;
    
    @Experimental
    @Named
    @Singleton
    @Priority(-1)
    public class DefaultMessageBuilderFactory implements MessageBuilderFactory {
    
        @Inject
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/aether/MavenDeployer.java

    import org.eclipse.aether.impl.Deployer;
    import org.eclipse.aether.internal.impl.DefaultDeployer;
    import org.eclipse.sisu.Priority;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * Maven specific deployer.
     */
    @Singleton
    @Named
    @Priority(100)
    final class MavenDeployer implements Deployer {
    
        private final DefaultDeployer deployer;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 25 10:27:00 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  9. docs/bucket/replication/setup_3site_replication.sh

    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync" --priority 2
    sleep 1
    
    echo "adding replication rule for c -> a : ${remote_arn}"
    ./mc replicate add sitec/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9001/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync" --priority 2
    sleep 1
    
    echo "adding replication rule for b -> c : ${remote_arn}"
    Shell Script
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/ThreadFactoryBuilderTest.java

        Thread thread = factory.newThread(monitoredRunnable);
        assertTrue(thread.isDaemon());
      }
    
      public void testPriority_custom() {
        for (int i = Thread.MIN_PRIORITY; i <= Thread.MAX_PRIORITY; i++) {
          ThreadFactory factory = builder.setPriority(i).build();
          Thread thread = factory.newThread(monitoredRunnable);
          assertEquals(i, thread.getPriority());
        }
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 7.5K bytes
    - Viewed (0)
Back to top