Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,696 for IsSkip (0.19 sec)

  1. releasenotes/notes/enable-verify-certificate-at-client.yaml

      If undesired please use the new `compatibilityVersion` feature to fallback to old behavior, or `insecureSkipVerify`
      field in DestinationRule to skip the verification.
    upgradeNotes:
    - title: Default value of the feature flag `VERIFY_CERT_AT_CLIENT` is set to true
      content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 24 15:53:10 UTC 2024
    - 911 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/constant.go

    	SchedulerExtraArgs = "scheduler-extra-args"
    
    	// SkipTokenPrint flag instructs kubeadm to skip printing of the default bootstrap token generated by 'kubeadm init'.
    	SkipTokenPrint = "skip-token-print"
    
    	// TokenStr flags sets both the discovery-token and the tls-bootstrap-token when those values are not provided
    	TokenStr = "token"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_race_issue26995.txt

    [short] skip
    [!race] skip
    
    go test -v -race
    stdout 'testing_test.go:26: directCall'
    stdout 'testing_test.go:27: interfaceTBCall'
    stdout 'testing_test.go:28: interfaceCall'
    
    -- go.mod --
    module 26995-TBHelper-line-number
    
    go 1.21
    -- testing_test.go --
    package testing_test
    
    import "testing"
    
    type TestingT interface {
    	Helper()
    	Log(args ...interface{})
    }
    
    func directCall(t *testing.T) {
    	t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 17:19:18 UTC 2024
    - 662 bytes
    - Viewed (0)
  4. okhttp-sse/src/main/kotlin/okhttp3/sse/internal/ServerSentEventReader.kt

                callback.onRetryChange(retryMs)
              }
            }
    
            -1 -> {
              val lineEnd = source.indexOfElement(CRLF)
              if (lineEnd != -1L) {
                // Skip the line and newline
                source.skip(lineEnd)
                source.select(options)
              } else {
                return false // No more newlines.
              }
            }
    
            else -> throw AssertionError()
          }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

    import org.gradle.internal.taskgraph.CalculateTaskGraphBuildOperationType
    import org.gradle.internal.taskgraph.CalculateTreeTaskGraphBuildOperationType
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class CalculateTaskGraphBuildOperationIntegrationTest extends AbstractIntegrationSpec {
    
        final buildOperations = new BuildOperationsFixture(executer, temporaryFolder)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typebits/typebits.go

    }
    
    // SetNoCheck is like Set, but do not check for alignment.
    func SetNoCheck(t *types.Type, off int64, bv bitvec.BitVec) {
    	set(t, off, bv, true)
    }
    
    func set(t *types.Type, off int64, bv bitvec.BitVec, skip bool) {
    	if !skip && uint8(t.Alignment()) > 0 && off&int64(uint8(t.Alignment())-1) != 0 {
    		base.Fatalf("typebits.Set: invalid initial alignment: type %v has alignment %d, but offset is %v", t, uint8(t.Alignment()), off)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/syscall/exec_linux_test.go

    		t.Fatal(err)
    	}
    }
    
    func TestUnshare(t *testing.T) {
    	path := "/proc/net/dev"
    	if _, err := os.Stat(path); err != nil {
    		if os.IsNotExist(err) {
    			t.Skip("kernel doesn't support proc filesystem")
    		}
    		if os.IsPermission(err) {
    			t.Skip("unable to test proc filesystem due to permissions")
    		}
    		t.Fatal(err)
    	}
    
    	b, err := os.ReadFile(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/net/lookup_test.go

    }
    
    func TestLookupGmailTXT(t *testing.T) {
    	if runtime.GOOS == "plan9" {
    		t.Skip("skipping on plan9; see https://golang.org/issue/29722")
    	}
    	t.Parallel()
    	mustHaveExternalNetwork(t)
    
    	if runtime.GOOS == "ios" {
    		t.Skip("no resolv.conf on iOS")
    	}
    
    	if !supportsIPv4() || !*testIPv4 {
    		t.Skip("IPv4 is required")
    	}
    
    	attempts := 0
    	for i := 0; i < len(lookupGmailTXTTests); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/get_issue53955.txt

    # only *after* extracting version information for a locally-cached commit,
    # causing the version information to have incomplete Tags and Version fields.
    
    [short] skip 'constructs a local git repo'
    [!git] skip
    [!net:github.com] skip 'does not actually use github.com because of insteadOf, but silence network check just in case'
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectCollectionSchemaIntegrationTest.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 NamedDomainObjectCollectionSchemaIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            buildFile """
                def extractSchema(container) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top