Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 213 for skipNSs (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    	if !someMatchesAllResources {
    		skipNSs := []string{pfx + "-n4", pfx + "-n5", pfx + "-n6"}
    		if mayMatchClusterScope && rr.Namespaces[0] != "" && rng.Float32() < 0.1 {
    			skipNSs[0] = ""
    		}
    		skippingRIs = genRRIs(rng, 3,
    			[]string{pfx + "-v4", pfx + "-v5", pfx + "-v6"},
    			[]string{pfx + ".g4", pfx + ".g5", pfx + ".g6"},
    			[]string{pfx + "-r4s", pfx + "-r5s", pfx + "-r6s"},
    			skipNSs)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  2. src/net/http/sniff.go

    		return e.ct
    	}
    	return ""
    }
    
    type maskedSig struct {
    	mask, pat []byte
    	skipWS    bool
    	ct        string
    }
    
    func (m *maskedSig) match(data []byte, firstNonWS int) string {
    	// pattern matching algorithm section 6
    	// https://mimesniff.spec.whatwg.org/#pattern-matching-algorithm
    
    	if m.skipWS {
    		data = data[firstNonWS:]
    	}
    	if len(m.pat) != len(m.mask) {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_json_fields.txt

    stderr 'no matching files found'
    cd ..
    
    [!git] skip
    
    # Test -json=<field> without Stale skips computing buildinfo
    cd repo
    exec git init
    # Control case: with -json=Stale cmd/go executes git status to compute buildinfo
    go list -json=Stale -x
    stderr 'git status'
    # Test case: without -json=Stale cmd/go skips git status
    go list -json=Name -x
    ! stderr 'git status'
    
    -- go.mod --
    module example.com/a
    
    go 1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 15:24:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceTest.groovy

            and:
            oldCacheDir.assertExists()
            oldDist.assertExists()
            currentCacheDir.assertExists()
            currentDist.assertExists()
        }
    
        def "skips cleanup of version-specific caches and distributions if gc.properties has recently been changed"() {
            given:
            def oldVersion = GradleVersion.version("2.3.4")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalCompileIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.CppLib
    
    class CppIncrementalCompileIntegrationTest extends AbstractInstalledToolChainIntegrationSpec implements CppTaskNames {
    
        @ToBeFixedForConfigurationCache
        def "skips compile and link tasks for executable when source doesn't change"() {
            def app = new CppApp()
            settingsFile << "rootProject.name = 'app'"
    
            given:
            app.writeToProject(testDirectory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. tests/integration/ambient/untaint/main_test.go

    			t.Settings().Ambient = true
    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    components:
      cni:
        namespace: "kube-system"
    values:
      pilot:
        taint:
          enabled: true
          namespace: "kube-system"
        env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 14:58:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/certs.go

    		%s and %s files.
    		
    		If both files already exist, kubeadm skips the generation step and existing files will be used.
    		`), kubeadmconstants.ServiceAccountPrivateKeyName, kubeadmconstants.ServiceAccountPublicKeyName)
    
    	genericLongDesc = cmdutil.LongDesc(`
    		Generate the %[1]s, and save them into %[2]s.crt and %[2]s.key files.%[3]s
    
    		If both files already exist, kubeadm skips the generation step and existing files will be used.
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/io/fs/walk.go

    //
    // The error result returned by the function controls how [WalkDir]
    // continues. If the function returns the special value [SkipDir], WalkDir
    // skips the current directory (path if d.IsDir() is true, otherwise
    // path's parent directory). If the function returns the special value
    // [SkipAll], WalkDir skips all remaining files and directories. Otherwise,
    // if the function returns a non-nil error, WalkDir stops entirely and
    // returns that error.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. src/testing/match.go

    	var filter, skip filterMatch
    	if patterns == "" {
    		filter = simpleMatch{} // always partial true
    	} else {
    		filter = splitRegexp(patterns)
    		if err := filter.verify(name, matchString); err != nil {
    			fmt.Fprintf(os.Stderr, "testing: invalid regexp for %s\n", err)
    			os.Exit(1)
    		}
    	}
    	if skips == "" {
    		skip = alternationMatch{} // always false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            succeeds "verify"
    
            then:
            executedAndNotSkipped ":verify"
            notExecuted ":project-lib:jar", ":composite-lib:jar"
    
            when: "Running it again with the same environment skips the task"
            succeeds "verify"
    
            then:
            skipped ":verify"
            notExecuted ":project-lib:jar", ":composite-lib:jar"
    
            when: "The change doesn't invalidate the cache"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top