Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,960 for broot (0.55 sec)

  1. docs/kms/IAM.md

    - Reduced server startup time. For IAM encryption with the root credentials, MinIO had
       to use a memory-hard function (Argon2) that (on purpose) consumes a lot of memory and CPU.
       The new KMS-based approach can use a key derivation function that is orders of magnitudes
       cheaper w.r.t. memory and CPU.
    - Root credentials can now be changed easily. Before, a two-step process was required to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/OutputFileChangesTest.groovy

                    regularFile("root/two", 0x2345)
                ]),
                missing("root")
            ) == [removed("root"), removed("root/one"), removed("root/two")]
        }
    
        def "type change missing -> directory"() {
            expect:
            changes(
                missing("root"),
                directory("root", [
                    regularFile("root/one", 0x1234),
                    regularFile("root/two", 0x2345)
                ])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifierTest.groovy

        private ClassLoaderScopeIdentifier root = new ClassLoaderScopeIdentifier(null, "root")
    
        def "equality"() {
            expect:
            root.localId() == root.localId()
            root.localId() != root.exportId()
            root.exportId() != root.localId()
            root.exportId() == root.exportId()
        }
    
        def "creates child"() {
            def child = root.child(root.name)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 05 18:43:41 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleClassAndFunctionContextReceivers.ir.txt

                  $context_receiver_0: GET_FIELD 'FIELD FIELD_FOR_CLASS_CONTEXT_RECEIVER name:contextReceiverField0 type:<root>.Ctx1 visibility:private [final] declared in <root>.Test' type=<root>.Ctx1 origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Apr 26 06:04:06 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/cc_ops_test.cc

      TF_CHECK_OK(root.status());
      test::GetTensor(root, c4, &out);
      test::ExpectTensorEqual<int>(out, Tensor(DT_INT32, {1, 1, 0}));
    
      ops::Const(root, {{}, {{}}});
      EXPECT_FALSE(root.status().ok());
    }
    
    TEST(CCOpTest, InvalidFinalize) {
      Scope root = Scope::NewRootScope();
      auto read_up_to =
          ops::ReaderReadUpTo(root, Variable(root, {}, DT_STRING),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. tools/certs/Makefile.selfsigned.mk

    ##root-ca:	generate root CA files (key and certificate) in current directory.
    .PHONY: root-ca
    
    root-ca: root-key.pem root-cert.pem
    
    root-cert.pem: root-cert.csr root-key.pem
    	@echo "generating $@"
    	@openssl x509 -req -sha256 -days $(ROOTCA_DAYS) -signkey root-key.pem \
    		-extensions req_ext -extfile root-ca.conf \
    		-in $< -out $@
    
    root-cert.csr: root-key.pem root-ca.conf
    	@echo "generating $@"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 28 19:49:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiverSmartCasted.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.Foo
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                TYPE_OP type=<root>.FooImpl origin=CAST typeOperand=<root>.FooImpl
                  GET_VAR 'p0: <root>.Foo declared in <root>.CodeFragment.run' type=<root>.Foo origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Dec 12 17:31:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleClassContextReceivers.ir.txt

                    receiver: GET_VAR 'p0: <root>.Test declared in <root>.CodeFragment.run' type=<root>.Test origin=null
                  $context_receiver_1: GET_FIELD 'FIELD FIELD_FOR_CLASS_CONTEXT_RECEIVER name:contextReceiverField1 type:<root>.Ctx2 visibility:private [final] declared in <root>.Test' type=<root>.Ctx2 origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Apr 26 06:04:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/field/path_test.go

    			"root.first.second[0].third[93]",
    		},
    		{
    			func(p *Path) *Path { return p.parent },
    			"root.first.second[0].third",
    		},
    		{
    			func(p *Path) *Path { return p.parent },
    			"root.first.second[0]",
    		},
    		{
    			func(p *Path) *Path { return p.Key("key") },
    			"root.first.second[0][key]",
    		},
    	}
    
    	root := NewPath("root")
    	p := root
    	for i, tc := range testCases {
    		p = tc.op(p)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ProjectRootOfTest.kt

                    scriptFile = file("root/nested-project-root/sub-project/build.gradle.kts"),
                    importedProjectRoot = folder("root")
                ),
                equalTo(folder("root/nested-project-root"))
            )
        }
    
        @Test
        fun `given a script file under a separate project it should return the separate project root`() {
    
            withFolders {
                "root" {
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top