Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 789 for Rays (0.04 sec)

  1. cmd/bucket-lifecycle-handlers_test.go

    			secretKey:          creds.SecretKey,
    			body:               []byte(`<LifecycleConfiguration><Rule><ID>id</ID><Filter><Prefix>logs/</Prefix><Tag><Key>Key1</Key><Value>Value1</Value></Tag></Filter><Status>Enabled</Status><Expiration><Days>365</Days></Expiration></Rule></LifecycleConfiguration>`),
    			expectedRespStatus: http.StatusBadRequest,
    			lifecycleResponse:  []byte(``),
    			errorResponse: APIErrorResponse{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_env_web.properties

    environment.title = Production
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  3. pilot/pkg/model/test/testcert/generate.sh

    # limitations under the License.
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert.pem -keyout key.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=localhost/SAN=localhost" \
            -addext "subjectAltName = DNS:localhost"
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert2.pem -keyout key2.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=anotherhost" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 12 05:58:58 UTC 2020
    - 1K bytes
    - Viewed (0)
  4. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/TimeFormatting.java

                result.append("-");
                result.append(formatDurationVeryTerse(-duration));
                return result.toString();
            }
    
            long days = duration / MILLIS_PER_DAY;
            duration = duration % MILLIS_PER_DAY;
            if (days > 0) {
                result.append(days);
                result.append("d");
            }
            long hours = duration / MILLIS_PER_HOUR;
            duration = duration % MILLIS_PER_HOUR;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_env.properties

    environment.title = Local Development
    
    # Does it enable the Framework internal debug? (true only when emergency)
    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Aug 07 04:53:24 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/cache/internal/WrapperDistributionCleanupAction.java

        }
    
        @Override
        public boolean execute(@Nonnull CleanupProgressMonitor progressMonitor) {
            long maximumTimestamp = Math.max(0, System.currentTimeMillis() - TimeUnit.DAYS.toMillis(1));
            Set<GradleVersion> usedVersions = this.usedGradleVersions.getUsedGradleVersions();
            Multimap<GradleVersion, File> checksumDirsByVersion = determineChecksumDirsByVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/quantization_passes.h

    // different dialect ops might have different ways to assign the name.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateImportQuantStatsPass(
        OperationToName op_to_name, const std::string& stats_str);
    
    // Creates an instance pass to import quantization stats to the operations in
    // the function. A custom method to get the name from the op is used because
    // different dialect ops might have different ways to assign the name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:43:51 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. cmd/data-scanner_test.go

    		IsLatest:     true,
    		DeleteMarker: true,
    		NumVersions:  4,
    	}
    	deleteAllILM := `<LifecycleConfiguration>
    			    <Rule>
    		               <Expiration>
    		                  <Days>30</Days>
    	                          <ExpiredObjectAllVersions>true</ExpiredObjectAllVersions>
    	                       </Expiration>
    	                       <Filter></Filter>
    	                       <Status>Enabled</Status>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 11:18:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/cmd/dist/supported_test.go

    			for _, mode := range modes {
    				var dt tester
    				dist := dt.supportedBuildmode(mode)
    				std := platform.BuildModeSupported("gc", mode, o, a)
    				if dist != std {
    					t.Errorf("discrepancy for %s-%s %s: dist says %t, standard library says %t", o, a, mode, dist, std)
    				}
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/typeconversion/TimeUnitsParser.java

        public NormalizedTimeUnit parseNotation(CharSequence notation, int value) {
            String candidate = notation.toString().toUpperCase();
            //jdk5 does not have days, hours or minutes, normalizing to millis
            switch (candidate) {
                case "DAYS":
                    return millis(value * 24 * 60 * 60 * 1000);
                case "HOURS":
                    return millis(value * 60 * 60 * 1000);
                case "MINUTES":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 25 21:38:50 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top