Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,120 for setOp (0.08 sec)

  1. .github/workflows/publish.yml

              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
            with:
              python-version: "3.10"
              # Issue ref: https://github.com/actions/setup-python/issues/436
              # cache: "pip"
              # cache-dependency-path: pyproject.toml
          - name: Install build dependencies
            run: pip install build
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 06:38:13 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/GradlePluginIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    class GradlePluginIntegrationTest extends AbstractIntegrationSpec {
        File initFile;
    
        def setup() {
            initFile = temporaryFolder.createFile("initscripts/init.gradle")
            executer.usingInitScript(initFile);
        }
    
        @ToBeFixedForConfigurationCache(because = "Gradle.buildFinished")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:31:11 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  3. cmd/os-reliable_test.go

    package cmd
    
    import (
    	"testing"
    )
    
    // Tests - mkdirAll()
    func TestOSMkdirAll(t *testing.T) {
    	// create xlStorage test setup
    	_, path, err := newXLStorageTestSetup(t)
    	if err != nil {
    		t.Fatalf("Unable to create xlStorage test setup, %s", err)
    	}
    
    	if err = mkdirAll("", 0o777, ""); err != errInvalidArgument {
    		t.Fatal("Unexpected error", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 13 15:14:36 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    				if err != nil {
    					t.Fatalf("failed to setup VolumeAttachment: %v", err)
    				}
    			}
    
    			// Mounter.SetUp()
    			if err := csiMounter.SetUp(volume.MounterArgs{}); err != nil {
    				t.Fatalf("mounter.Setup failed: %v", err)
    			}
    
    			// ensure call went all the way
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. releasenotes/notes/fix-custom-injection-runas.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    docs:
    - 'https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 314 bytes
    - Viewed (0)
  6. docs/distributed/README.md

    **In our tests we also found ext4 does not honor POSIX O_DIRECT/Fdatasync semantics, ext4 trades performance for consistency guarantees. Please avoid ext4 in your setup.**
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. releasenotes/notes/bookinfo-openshift.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: documentation
    docs:
    - 'https://istio.io/latest/docs/setup/platform-setup/openshift/'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 15 13:53:27 UTC 2023
    - 250 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

    import static org.gradle.plugins.ide.tooling.r210.ConventionsExtensionsCrossVersionFixture.javaTargetCompatibility
    
    class ToolingApiEclipseModelClasspathContainerCrossVersionSpec extends ToolingApiSpecification {
    
        def setup() {
            settingsFile << 'rootProject.name = "root"'
        }
    
        def "Project has no classpath containers"() {
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. releasenotes/notes/mc-gateway-ports.yaml

    releaseNotes:
    - |
      **Removed** the `15012` and `15443` ports from the default gateway installation. These can be explicitly
      [added](https://istio.io/latest/docs/setup/install/istioctl/#configure-gateways) if desired, although it is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 04 00:35:29 UTC 2021
    - 430 bytes
    - Viewed (0)
  10. .github/workflows/docs.yml

          - name: Checkout
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - uses: actions/setup-python@v5
            with:
              python-version: 3.x
    
          - run: pip install mkdocs-material mkdocs-redirects
    
          - name: Generate Docs
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 04 06:13:36 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top