Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 773 for tpool_ (0.14 sec)

  1. tests/common/jwt/jwt_token.go

    const (
    	// Payload {
    	//  "exp": 4715782722,
    	//  "groups": [
    	//    "group-1"
    	//  ],
    	//  "iat": 1562182722,
    	//  "iss": "******@****.***",
    	//  "sub": "sub-1"
    	// }
    	// Generated by: security/tools/jwt/samples/gen-jwt.py tests/common/jwt/key.pem -jwks=tests/common/jwt/jwks.json
    	// --expire=3153600000 --iss=******@****.*** --sub=sub-1 --listclaim groups "group-1"
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. docs/metrics/v3.md

    | `minio_cluster_erasure_set_overall_health`       | `gauge` | Overall health across pools and sets (1=healthy, 0=unhealthy)                     |                  |
    | `minio_cluster_erasure_set_read_quorum`          | `gauge` | Read quorum for the erasure set in a pool                                         | `pool_id,set_id` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  3. cmd/server-main.go

    	if err != nil {
    		return err
    	}
    	setDriveCount := uint64(v)
    
    	var pools []poolArgs
    	switch cv.Version {
    	case "v1":
    		cfV1 := config.ServerConfigV1{}
    		if err = yaml.Unmarshal(rd, &cfV1); err != nil {
    			return err
    		}
    
    		pools = make([]poolArgs, 0, len(cfV1.Pools))
    		for _, list := range cfV1.Pools {
    			pools = append(pools, poolArgs{
    				args:          list,
    				setDriveCount: setDriveCount,
    			})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

        }
    
        def "finds tools.jar if java home supplied"() {
            System.properties['java.vm.vendor'] = 'Sun'
    
            when:
            def home = tmpDir.createDir("home")
            home.create {
                jdk {
                    bin { file theOs.getExecutableName('java') }
                    lib { file 'tools.jar' }
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    #include "tensorflow/tools/proto_splitter/cc/util.h"
    #include "tensorflow/tools/proto_splitter/chunk.pb.h"
    #include "tensorflow/tools/proto_splitter/testdata/test_message.pb.h"
    #include "tsl/lib/core/status_test_util.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/status_matchers.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/dom_test.go

    			Valu("p", OpConstBool, types.Types[types.TBOOL], 1, nil),
    			Goto(blockn(0)),
    		),
    	)
    
    	// We want predecessor lists to be long, so 2/3rds of the blocks have a
    	// successor of the first or last block.
    	for i := 0; i < size; i++ {
    		switch i % 3 {
    		case 0:
    			blocs = append(blocs, Bloc(blockn(i),
    				Valu("a", OpConstBool, types.Types[types.TBOOL], 1, nil),
    				Goto(blockn(i+1))))
    		case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

    import com.google.common.annotations.VisibleForTesting;
    import com.sun.tools.javac.api.ClientCodeWrapper;
    import com.sun.tools.javac.api.DiagnosticFormatter;
    import com.sun.tools.javac.util.Context;
    import com.sun.tools.javac.util.JCDiagnostic;
    import com.sun.tools.javac.util.JavacMessages;
    import com.sun.tools.javac.util.Log;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    From the main menu, go to `View` > `Tool Windows` > `Gradle`.
    Then click on the _Refresh_ icon.
    
    .Refreshing a Gradle project in IntelliJ IDEA
    image::troubleshooting-refresh-intellij.png[]
    
    === Refreshing Eclipse (using Buildship)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

         * the interrupting thread doesn't interrupt the _next_ thing to run on this thread.
         *
         * Note: We don't reset the interrupted bit, just wait for it to be set. If this is a thread
         * pool thread, the thread pool will reset it for us. Otherwise, the interrupted bit may have
         * been intended for something else, so don't clear it.
         */
        boolean restoreInterruptedBit = false;
        int spinCount = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

            and:
            metadata.version == VersionNumber.parse("15.3.26730.16")
            metadata.installDir == dir1
            metadata.visualCppDir == new File(dir1, "VC/Tools/MSVC/1.2.3.4")
            metadata.visualCppVersion == VersionNumber.parse("1.2.3.4")
            metadata.compatibility == VS2017_OR_LATER
        }
    
        def "can determine a legacy version of an install from command line"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top