Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for BOGUS (0.1 sec)

  1. cmd/kubeadm/app/phases/upgrade/postupgrade_test.go

    			cfg:        &kubeadmapi.InitConfiguration{},
    		},
    		{
    			name:       "only one err: patch dir does not exist",
    			dryrun:     true,
    			patchesDir: "Bogus",
    			errPattern: "could not list patch files for path \"Bogus\"",
    			cfg: &kubeadmapi.InitConfiguration{
    				ClusterConfiguration: kubeadmapi.ClusterConfiguration{
    					ComponentConfigs: kubeadmapi.ComponentConfigMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 11:40:04 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/compress/flate/reader_test.go

    // license that can be found in the LICENSE file.
    
    package flate
    
    import (
    	"bytes"
    	"io"
    	"os"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    func TestNlitOutOfRange(t *testing.T) {
    	// Trying to decode this bogus flate data, which has a Huffman table
    	// with nlit=288, should not panic.
    	io.Copy(io.Discard, NewReader(strings.NewReader(
    		"\xfc\xfe\x36\xe7\x5e\x1c\xef\xb3\x55\x58\x77\xb6\x56\xb5\x43\xf4"+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_trimpath_goroot.txt

    # Regression test for https://go.dev/issue/51461 and https://go.dev/issue/51483.
    #
    # When built with -trimpath, runtime.GOROOT() returned the bogus string "go"
    # if GOROOT was not set explicitly in the environment.
    # It should instead return the empty string, since we know that we don't
    # have a valid path to return.
    
    [trimpath] env GOROOT=
    [trimpath] ! go env GOROOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. security/pkg/server/ca/node_auth_test.go

    			wantErr:                 "pod istio-system/ztunnel-a not found",
    		},
    		{
    			name: "bad UID",
    			caller: func(k security.KubernetesInfo) security.KubernetesInfo {
    				k.PodUID = "bogus"
    				return k
    			}(ztunnelCaller),
    			trustedAccounts:         allowZtunnel,
    			requestedIdentityString: podSameNode.Identity(),
    			pods:                    []pod{ztunnelPod},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategyTest.groovy

            DaemonContext daemonContext = new DefaultDaemonContext("user", null, JavaLanguageVersion.current(), tempDir.file("BOGUS"), 51234L, 10000, [] as List<String>, false, NativeServicesMode.ENABLED, DaemonParameters.Priority.NORMAL)
    
            when:
            1 * daemon.getDaemonContext() >> { daemonContext }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryIntegrationTest.groovy

            given:
            buildFile """
            class Thing {}
    
            task fail {
                def objects = project.objects
                doLast {
                    objects.newInstance(Thing, 'bogus')
                }
            }
    """
    
            when:
            fails "fail"
    
            then:
            failure.assertHasCause('Could not create an instance of type Thing.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 07 02:25:12 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      Output begin = ops::Placeholder(root.WithOpName("begin"), DT_INT32);
    
      // The shape refiner throws an error if we use a bogus constant value for
      // size.  So we first use a Placeholder to placate the shape refiner, and
      // later replace it with a bogus constant.
      Output size_placeholder =
          ops::Placeholder(root.WithOpName("size_placeholder"), DT_INT32);
      Output slice =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. pkg/util/strcase/camelcase.go

    		if isWordSeparator(c) {
    			// Skip the separate and capitalize the next letter.
    			continue
    		}
    		if isASCIIDigit(c) {
    			t = append(t, c)
    			continue
    		}
    		// Assume we have a letter now - if not, it's a bogus identifier.
    		// The next word is a sequence of characters that must start upper case.
    		if isASCIILower(c) {
    			c ^= ' ' // Make it a capital letter.
    		}
    		t = append(t, c) // Guaranteed not lower case.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  9. src/net/http/readrequest_test.go

    			Close:         false,
    			ContentLength: 0,
    			Host:          "test",
    			RequestURI:    "//user@host/is/actually/a/path/",
    		},
    
    		noBodyStr,
    		noTrailer,
    		noError,
    	},
    
    	// Tests a bogus absolute-path on the Request-Line (RFC 7230 section 5.3.1)
    	{
    		"GET ../../../../etc/passwd HTTP/1.1\r\n" +
    			"Host: test\r\n\r\n",
    		nil,
    		noBodyStr,
    		noTrailer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_query_empty.txt

    env GO111MODULE=on
    env GOSUMDB=off
    
    go mod download example.com/join@v1.1.0
    
    # If the proxy serves a bogus result for the @latest version,
    # reading that version should cause 'go get' to fail.
    env GOPROXY=file:///$WORK/badproxy
    cp go.mod.orig go.mod
    ! go get example.com/join/subpkg
    stderr 'go: example.com/join/subpkg@v0.0.0-20190624000000-123456abcdef: .*'
    
    # If @v/list is empty, the 'go' command should still try to resolve
    # other module paths.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top