Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 134 for BOGUS (0.03 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

             * the way 2.x works. When we're in strict mode, the removal of duplicates just saves other merging steps from
             * aftereffects and bogus error messages.
             */
            List<Dependency> dependencies = model.getDependencies();
            Map<String, Dependency> normalized = new LinkedHashMap<>(dependencies.size() * 2);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/branchelim_test.go

    		t.Run(arch, func(t *testing.T) {
    			c := testConfigArch(t, arch)
    			boolType := c.config.Types.Bool
    			intType := c.config.Types.Int32
    
    			// The control flow here is totally bogus,
    			// but a dead cycle seems like the only plausible
    			// way to arrive at a diamond CFG that is also a loop.
    			fun := c.Fun("entry",
    				Bloc("entry",
    					Valu("start", OpInitMem, types.TypeMem, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/cache/secretcache_test.go

    	}()
    
    	u := NewUpdateTracker(t)
    	sc := createCache(t, nil, u.Callback, security.Options{})
    	rootCertPath, _ := filepath.Abs("./testdata/root-cert-bogus.pem")
    	keyPath, _ := filepath.Abs("./testdata/key-bogus.pem")
    	certChainPath, _ := filepath.Abs("./testdata/cert-chain-bogus.pem")
    
    	resource := fmt.Sprintf("file-cert:%s~%s", certChainPath, keyPath)
    
    	gotSecret, err := sc.GenerateSecret(resource)
    
    	if err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/runtime/os_openbsd.go

    //go:nosplit
    func raise(sig uint32) {
    	thrkill(getthrid(), int(sig))
    }
    
    func signalM(mp *m, sig int) {
    	thrkill(int32(mp.procid), sig)
    }
    
    // sigPerThreadSyscall is only used on linux, so we assign a bogus signal
    // number.
    const sigPerThreadSyscall = 1 << 31
    
    //go:nosplit
    func runPerThreadSyscall() {
    	throw("runPerThreadSyscall only valid on linux")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			wantException:  true,
    		},
    		{ // supplying nonexistent deployment name in nonexistent namespace
    			args:           strings.Split("endpoint deployment/random-gibberish.bogus", " "),
    			expectedString: `"deployment/random-gibberish" does not refer to a pod`,
    			wantException:  true,
    		},
    		{ // supplying type that doesn't select pods should fail
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

            result = repositorySystem.resolve(request);
            resolutionErrorHandler.throwErrors(request, result);
            assertEquals(1, result.getArtifacts().size());
    
            //
            // Put in a bogus file to make sure missing files cause the resolution to fail.
            //
            file = new File(getBasedir(), "src/test/repository-system/maven-monkey-2.1.0.jar");
            assertFalse(file.exists());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. pkg/config/analysis/local/analyze_test.go

    }
    
    func TestAddReaderKubeSourceSkipsBadEntries(t *testing.T) {
    	g := NewWithT(t)
    
    	sa := NewSourceAnalyzer(blankCombinedAnalyzer, "", "", nil)
    
    	tmpfile := tempFileFromString(t, JoinString(YamlN1I1V1, "bogus resource entry\n"))
    	defer func() { _ = os.Remove(tmpfile.Name()) }()
    
    	err := sa.AddReaderKubeSource([]ReaderSource{{Reader: tmpfile}})
    	g.Expect(err).To(Not(BeNil()))
    }
    
    const (
    	yamlSeparator = "---\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/net/http/httptest/recorder.go

    	// and we might block under 200 (once we have more mature 1xx support).
    	// But for now any three digits.
    	//
    	// We used to send "HTTP/1.1 000 0" on the wire in responses but there's
    	// no equivalent bogus thing we can realistically send in HTTP/2,
    	// so we'll consistently panic instead and help people find their bugs
    	// early. (We can't return an error from WriteHeader even if we wanted to.)
    	if code < 100 || code > 999 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/reset_test.go

    		},
    		{
    			name: "--cri-socket flag is not allowed to mix with config",
    			flags: map[string]string{
    				options.CfgPath:       configFilePath,
    				options.NodeCRISocket: fmt.Sprintf("%s:///var/run/bogus.sock", defaultURLScheme),
    			},
    			expectError: "can not mix '--config' with arguments",
    		},
    		{
    			name: "--force flag is not allowed to mix with config",
    			flags: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 13:42:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/cmd/cover/cover_test.go

    	/* nothing here */
    	println("ok")
    }
    `
    	if err := os.MkdirAll(filepath.Dir(srcPath), 0777); err != nil {
    		t.Skipf("creating directory with bogus path: %v", err)
    	}
    	if err := os.WriteFile(srcPath, []byte(mainSrc), 0666); err != nil {
    		t.Skipf("writing file with bogus directory: %v", err)
    	}
    
    	cmd := testenv.Command(t, testcover(t), "-mode=atomic", srcPath)
    	cmd.Stderr = new(bytes.Buffer)
    	out, err := cmd.Output()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top