Search Options

Results per page
Sort
Preferred Languages
Advance

Results 461 - 470 of 1,300 for empty (0.02 sec)

  1. cmd/object-api-common.go

    	blockSizeV2 = 1 * humanize.MiByte
    
    	// Buckets meta prefix.
    	bucketMetaPrefix = "buckets"
    
    	// Deleted Buckets prefix.
    	deletedBucketsPrefix = ".deleted"
    
    	// ETag (hex encoded md5sum) of empty string.
    	emptyETag = "d41d8cd98f00b204e9800998ecf8427e"
    )
    
    // Global object layer mutex, used for safely updating object layer.
    var globalObjLayerMutex sync.RWMutex
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

        protected AccessTokenService accessTokenService;
    
        @Resource
        protected HttpServletRequest request;
    
        @Override
        protected OptionalThing<LoginManager> myLoginManager() {
            return OptionalThing.empty();
        }
    
        @Override
        public ActionResponse godHandPrologue(final ActionRuntime runtime) {
            if (!isAccessAllowed()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_ru.properties

    constraints.ModCheck.message                = The check digit for ${value} is invalid, ${modType} checksum failed.
    constraints.NotBlank.message                = {item} may not be empty.
    constraints.NotEmpty.message                = {item} may not be empty.
    constraints.ParametersScriptAssert.message  = script expression "{script}" didn't evaluate to true.
    constraints.Range.message                   = {item} must be between {min} and {max}.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri May 20 12:12:28 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  4. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/forked/ForkedMavenInvokerRequest.java

         * These arguments allow for customization of the JVM environment in which Maven will run.
         *
         * @return an Optional containing the list of extra JVM arguments, or empty if not specified
         */
        @Nonnull
        Optional<List<String>> jvmArguments();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 03 16:03:55 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. compat/maven-builder-support/src/main/java/org/apache/maven/building/Source.java

         */
        InputStream getInputStream() throws IOException;
    
        /**
         * Provides a user-friendly hint about the location of the source. This could be a local file path, a URI or just an
         * empty string. The intention is to assist users during error reporting.
         *
         * @return A user-friendly hint about the location of the source, never {@code null}.
         */
        String getLocation();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmConstituent.java

         *
         * @return The type, never {@code null}.
         */
        String getType();
    
        /**
         * Gets the classifier of the constituent's artifact.
         *
         * @return The classifier or an empty string, never {@code null}.
         */
        String getClassifier();
    
        /**
         * Gets the version of the constituent's artifact.
         *
         * @return The version, never {@code null}.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

        private static OptionalEntity<StopwordsItem> getEntity(final CreateForm form) {
            switch (form.crudMode) {
            case CrudMode.CREATE:
                final StopwordsItem entity = new StopwordsItem(0, StringUtil.EMPTY);
                return OptionalEntity.of(entity);
            case CrudMode.EDIT:
                if (form instanceof EditForm) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

          if (workerRunCount == oldRunCount && workerRunningState == QUEUING) {
            workerRunningState = QUEUED;
          }
        }
      }
    
      /** Worker that runs tasks from {@link #queue} until it is empty. */
      private final class QueueWorker implements Runnable {
        @CheckForNull Runnable task;
    
        @Override
        public void run() {
          try {
            workOnQueue();
          } catch (Error e) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/SequentialExecutor.java

          if (workerRunCount == oldRunCount && workerRunningState == QUEUING) {
            workerRunningState = QUEUED;
          }
        }
      }
    
      /** Worker that runs tasks from {@link #queue} until it is empty. */
      private final class QueueWorker implements Runnable {
        @CheckForNull Runnable task;
    
        @Override
        public void run() {
          try {
            workOnQueue();
          } catch (Error e) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. cmd/utils_test.go

    			object: "object///////",
    		},
    		// Test case 7 object has preceding separators.
    		{
    			path:   "/bucket////object////",
    			bucket: "bucket",
    			object: "///object////",
    		},
    		// Test case 8 url path is empty.
    		{
    			path:   "",
    			bucket: "",
    			object: "",
    		},
    	}
    
    	// Validate all test cases.
    	for _, testCase := range testCases {
    		testCase := testCase
    		t.Run("", func(t *testing.T) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top