Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,311 for modes (0.21 sec)

  1. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/DaemonForkOptionsTest.groovy

                .keepAliveMode(KeepAliveMode.SESSION)
                .build()
    
            expect:
            settings1.isCompatibleWith(settings2)
        }
    
        def "is compatible with same keep alive modes"() {
            def settings1 = daemonForkOptionsBuilder()
                .keepAliveMode(KeepAliveMode.SESSION)
                .build()
            def settings2 = daemonForkOptionsBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/index_test.go

    	}
    
    	// order of the requested modes should not matter
    	claim.Spec.AccessModes = []v1.PersistentVolumeAccessMode{v1.ReadWriteMany, v1.ReadWriteOnce, v1.ReadOnlyMany}
    	volume, _ = index.findBestMatchForClaim(claim, false)
    	if volume.Name != nfs.Name {
    		t.Errorf("Expected %s but got volume %s instead", nfs.Name, volume.Name)
    	}
    
    	// fewer modes requested should still match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

            when:
            runWithTestConfig("useTestNG(); maxParallelForks 2; $mode.config")
    
            then:
            verify(mode)
    
            where:
            mode << modes
        }
    
        def "produces JUnit xml results with aggressive forking - #mode.name"() {
            when:
            runWithTestConfig("useTestNG(); forkEvery 1; $mode.config")
    
            then:
            verify(mode)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. src/go/doc/testdata/a0.go

    // license that can be found in the LICENSE file.
    
    // comment 0
    package a
    
    //BUG(uid): bug0
    
    //TODO(uid): todo0
    
    // A note with some spaces after it, should be ignored (watch out for
    // emacs modes that remove trailing whitespace).
    //NOTE(uid):
    
    // SECBUG(uid): sec hole 0
    // need to fix asap
    
    // Multiple notes may be in the same comment group and should be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  5. src/syscall/const_plan9.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syscall
    
    // Plan 9 Constants
    
    // Open modes
    const (
    	O_RDONLY  = 0
    	O_WRONLY  = 1
    	O_RDWR    = 2
    	O_TRUNC   = 16
    	O_CLOEXEC = 32
    	O_EXCL    = 0x1000
    )
    
    // Bind flags
    const (
    	MORDER  = 0x0003 // mask for bits defining order of mounting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/LockMode.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.artifacts.dsl;
    
    /**
     * The supported lock modes:
     * <ul>
     *     <li>{@code DEFAULT} will load the lock state and verify resolution matches it</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/Files.java

        private final File file;
        private final ImmutableSet<FileWriteMode> modes;
    
        private FileByteSink(File file, FileWriteMode... modes) {
          this.file = checkNotNull(file);
          this.modes = ImmutableSet.copyOf(modes);
        }
    
        @Override
        public FileOutputStream openStream() throws IOException {
          return new FileOutputStream(file, modes.contains(APPEND));
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_plugin_test.go

    			modes:      []storage.VolumeLifecycleMode{storage.VolumeLifecycleEphemeral},
    		},
    		{
    			name:       "construct spec from volume spec2, missing mode",
    			specVolID:  "volspec2",
    			originSpec: volume.NewSpecFromVolume(makeTestVol("volspec2", testDriver)),
    			podUID:     types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    			modes:      []storage.VolumeLifecycleMode{},
    			shouldFail: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/diagnostic.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package modes
    
    import (
    	"github.com/fxamacker/cbor/v2"
    )
    
    var Diagnostic cbor.DiagMode = func() cbor.DiagMode {
    	opts := Decode.DecOptions()
    	diagnostic, err := cbor.DiagOptions{
    		ByteStringText: true,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 969 bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

                // Standalone modes) to have different test results (since `testPrefix` normally supports this functionality), but (1) we are
                // currently only testing the IDE mode and (2) the test results between different modes should not differ for session
                // invalidation in the first place.
                testPrefix = resultFileSuffix,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top