Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for bolus (0.17 sec)

  1. 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
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Apr 10 21:51:29 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  2. cmd/os_unix.go

    			return &buf
    		},
    	}
    
    	direntNamePool = sync.Pool{
    		New: func() interface{} {
    			buf := make([]byte, blockSize)
    			return &buf
    		},
    	}
    )
    
    // unexpectedFileMode is a sentinel (and bogus) os.FileMode
    // value used to represent a syscall.DT_UNKNOWN Dirent.Type.
    const unexpectedFileMode os.FileMode = os.ModeNamedPipe | os.ModeSocket | os.ModeDevice
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  3. istioctl/pkg/proxystatus/proxystatus_test.go

    			wantException: true,
    		},
    		{ // case 4: supplying nonexistent deployment name in nonexistent namespace
    			args:          strings.Split("deployment/random-gibberish.bogus", " "),
    			wantException: true,
    		},
    		{ // case 5: supplying nonexistent pod name should result in error
    			args:          strings.Split("random-gibberish-podname-61789237418234", " "),
    			wantException: true,
    		},
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 15 08:28:50 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  4. tests/preload_suits_test.go

    		t.Error(err)
    	}
    
    	var got5 Level3
    	DB.Preload("Level2.Level1s").Find(&got5, "value = ?", "bogus")
    
    	var ruLevel1 Level1
    	var zhLevel1 Level1
    	DB.First(&ruLevel1, "value = ?", "ru")
    	DB.First(&zhLevel1, "value = ?", "zh")
    
    	got.Level2.Level1s = []*Level1{&ruLevel1}
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Mar 18 05:38:46 GMT 2022
    - 30.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    	_, _ = runManifestGenerate([]string{inPathBase}, "", liveCharts, []string{"templates/deployment.yaml"})
    }
    
    func TestBogusControlPlaneSec(t *testing.T) {
    	inPathBase := filepath.Join(testDataDir, "input/bogus_cps.yaml")
    	_, err := runManifestGenerate([]string{inPathBase}, "", liveCharts, []string{"templates/deployment.yaml"})
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestInstallPackagePath(t *testing.T) {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 42K bytes
    - Viewed (0)
Back to top