Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,696 for IsSkip (0.13 sec)

  1. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/build.gradle.kts

                into(buildDirectory.dir("genOutput2"))
                from(objectFactory.fileTree().from("src/templates"))
                expand("year" to "2013")
            }
        }
    // tag::ad-hoc-task-skip-when-empty[]
    }
    // end::ad-hoc-task-skip-when-empty[]
    
    // tag::custom-class-runtime-api[]
    tasks.register<ProcessTemplates>("processTemplatesWithExtraInputs") {
        // ...
    // end::custom-class-runtime-api[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/AntBuilderLoggingIntegrationTest.groovy

    package org.gradle.api
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class AntBuilderLoggingIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireIsolatedDaemons()
            buildFile """
                ant.saveStreams = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/runtime/signal_windows_test.go

    	}
    }
    
    func TestVectoredHandlerDontCrashOnLibrary(t *testing.T) {
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    	if runtime.GOARCH == "arm" {
    		//TODO: remove this skip and update testwinlib/main.c
    		// once windows/arm supports c-shared buildmode.
    		// See go.dev/issues/43800.
    		t.Skip("this test can't run on windows/arm")
    	}
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/resource/TextResourceIntegrationTest.groovy

    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.util.internal.GUtil
    import org.junit.Rule
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    @TestReproducibleArchives
    class TextResourceIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        TestResources resource = new TestResources(temporaryFolder)
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. src/hash/maphash/smhasher_test.go

    	}
    	h.check(t)
    }
    
    // Strings with up to two nonzero bytes all have distinct hashes.
    func TestSmhasherTwoNonzero(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("Too slow on wasm")
    	}
    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	for n := 2; n <= 16; n++ {
    		twoNonZero(h, n)
    	}
    	h.check(t)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/query-params.md

    Dans l'exemple ci-dessus, ils ont des valeurs par défaut qui sont `skip=0` et `limit=10`.
    
    Donc, accéder à l'URL :
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    serait équivalent à accéder à l'URL :
    
    ```
    http://127.0.0.1:8000/items/?skip=0&limit=10
    ```
    
    Mais si vous accédez à, par exemple :
    
    ```
    http://127.0.0.1:8000/items/?skip=20
    ```
    
    Les valeurs des paramètres de votre fonction seront :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsRecordCodec.kt

        if (length < 0) {
          // compressed name pointer, first two bits are 1
          // drop second byte of compression offset
          source.skip(1)
        } else {
          while (length > 0) {
            // skip each part of the domain name
            source.skip(length.toLong())
            length = source.readByte().toInt()
          }
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/os/exec/lp_plan9.go

    // [errors.Is](err, [ErrDot]). See the package documentation for more details.
    func LookPath(file string) (string, error) {
    	// skip the path lookup for these prefixes
    	skip := []string{"/", "#", "./", "../"}
    
    	for _, p := range skip {
    		if strings.HasPrefix(file, p) {
    			err := findExecutable(file)
    			if err == nil {
    				return file, nil
    			}
    			return "", &Error{file, err}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    			name:                "nothing",
    			preFilterWantStatus: framework.NewStatus(framework.Skip),
    			wantStatus:          nil,
    		},
    		{
    			pod:                 &v1.Pod{},
    			nodeInfo:            framework.NewNodeInfo(st.MakePod().Volume(volState).Obj()),
    			name:                "one state",
    			preFilterWantStatus: framework.NewStatus(framework.Skip),
    			wantStatus:          nil,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_download_issue51114.txt

    [!net:github.com] skip
    [!git] skip
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    env GOPROXY=direct
    
    ! go mod download
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
Back to top