Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,983 for setupCa (0.26 sec)

  1. docs/distributed/DECOMMISSION.md

    ```
    
    - On baremetal setups, if you have `MINIO_VOLUMES="http://minio{1...2}/data{1...4} http://minio{3...4}/data{1...4}"`, you can remove the first argument `http://minio{1...2}/data{1...4}` to update your `MINIO_VOLUMES` setting, then restart all the servers in the setup in parallel using `systemctl restart minio`.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/mounter-defaults.go

    	"k8s.io/kubernetes/pkg/volume"
    )
    
    type mounterDefaults flexVolumeMounter
    
    // SetUpAt is part of the volume.Mounter interface.
    // This implementation relies on the attacher's device mount path and does a bind mount to dir.
    func (f *mounterDefaults) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.Warning(logPrefix(f.plugin), "using default SetUpAt to ", dir)
    
    	src, err := f.plugin.getDeviceMountPath(f.spec)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 15:56:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue24491a.go

    	<-done
    
    	func() {
    		defer test("defer", uintptr(setup()), uintptr(setup()), uintptr(setup()), uintptr(setup()))
    	}()
    	<-done
    
    	func() {
    		for {
    			defer test("defer in for loop", uintptr(setup()), uintptr(setup()), uintptr(setup()), uintptr(setup()))
    			break
    		}
    	}()
    	<-done
    
    	func() {
    		s := &S{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:58 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/Dockerfile

    RUN /setup.python.sh python3.11 devel.requirements.txt
    RUN /setup.python.sh python3.12 devel.requirements.txt
    
    FROM devel as tf
    # Setup TF Python environment.
    COPY devel.requirements.txt /devel.requirements.txt
    COPY setup.python.sh /setup.python.sh
    RUN /setup.python.sh python3.9 devel.requirements.txt
    RUN /setup.python.sh python3.10 devel.requirements.txt
    RUN /setup.python.sh python3.11 devel.requirements.txt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 09:32:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/extensions/MultiTestLifecycleSpec.groovy

        def setupSpec() {
            LIFECYCLE.pushEvent("setup spec")
        }
    
        def cleanupSpec() {
            LIFECYCLE.assertEvents([
                "setup spec",
                "rule before", "setup", "simple test: isFluid: false", "cleanup", "rule after",
                "rule before", "setup", "simple test: isFluid: true", "cleanup", "rule after",
                "rule before", "setup", "unrolled test: 1: isFluid: false", "cleanup", "rule after",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. releasenotes/notes/add-openshift-profile.yaml

    docs:
      - '[OpenShift Platform Setup] https://istio.io/docs/setup/platform-setup/openshift/'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 19 15:00:13 UTC 2024
    - 455 bytes
    - Viewed (0)
  7. .github/workflows/contributor-pr.yml

            uses: actions/checkout@v4
          - name: setup java
            uses: actions/setup-java@v4
            with:
              distribution: temurin
              java-version: 11
          - uses: actions/download-artifact@v4
            with:
              name: build-receipt.properties
              path: incoming-distributions/build-receipt.properties
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
            with:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/groovy/build.gradle

        }
    }
    // end::artifact-transform-minify[]
    
    // tag::artifact-transform-registration[]
    // tag::artifact-transform-attribute-setup[]
    def artifactType = Attribute.of('artifactType', String)
    def minified = Attribute.of('minified', Boolean)
    // end::artifact-transform-attribute-setup[]
    def keepPatterns = [
        "guava": [
            "com.google.common.base.Optional",
            "com.google.common.base.AbstractIterator"
        ] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseAutoBuildTasksCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    
    @TargetGradleVersion(">=5.4")
    class RunEclipseAutoBuildTasksCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            file("sub1").mkdirs()
    
            buildFile << """
                apply plugin: 'eclipse'
    
                task foo {
                }
    
                task bar {
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/crypto/internal/hpke/hpke_test.go

    		t.Fatal(err)
    	}
    
    	var vectors []struct {
    		Name        string
    		Setup       string
    		Encryptions string
    	}
    	if err := json.Unmarshal(vectorsJSON, &vectors); err != nil {
    		t.Fatal(err)
    	}
    
    	for _, vector := range vectors {
    		t.Run(vector.Name, func(t *testing.T) {
    			setup := parseVectorSetup(vector.Setup)
    
    			kemID, err := strconv.Atoi(setup["kem_id"])
    			if err != nil {
    				t.Fatal(err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top