Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 358 for shortly (0.09 sec)

  1. src/cmd/go/internal/modfetch/coderepo_test.go

    				}
    				if info.Name != tt.name {
    					t.Errorf("info.Name = %q, want %q", info.Name, tt.name)
    				}
    				if info.Short != tt.short {
    					t.Errorf("info.Short = %q, want %q", info.Short, tt.short)
    				}
    				if !info.Time.Equal(tt.time) {
    					t.Errorf("info.Time = %v, want %v", info.Time, tt.time)
    				}
    
    				if tt.gomod != "" || tt.gomodErr != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        protected static final short SMB2_READ = 0x0008;
        protected static final short SMB2_WRITE = 0x0009;
        protected static final short SMB2_LOCK = 0x000A;
        protected static final short SMB2_IOCTL = 0x000B;
        protected static final short SMB2_CANCEL = 0x000C;
        protected static final short SMB2_ECHO = 0x000D;
        protected static final short SMB2_QUERY_DIRECTORY = 0x000E;
        protected static final short SMB2_CHANGE_NOTIFY = 0x000F;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  3. src/cmd/trace/goroutines.go

    			execTimePercent = fmt.Sprintf("%.2f%%", float64(execTime)/float64(totalExecTime)*100)
    		}
    
    		// Sort.
    		sortBy := r.FormValue("sortby")
    		if _, ok := validNonOverlappingStats[sortBy]; ok {
    			slices.SortFunc(goroutines, func(a, b goroutine) int {
    				return cmp.Compare(b.NonOverlappingStats[sortBy], a.NonOverlappingStats[sortBy])
    			})
    		} else {
    			// Sort by total time by default.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/testflag.go

    			exitWithUsage()
    		}
    
    		if short := strings.TrimPrefix(f.Name, "test."); passFlagToTest[short] {
    			explicitArgs = append(explicitArgs, fmt.Sprintf("-test.%s=%v", short, f.Value))
    
    			// This flag has been overridden explicitly, so don't forward its implicit
    			// value from GOFLAGS.
    			delete(addFromGOFLAGS, short)
    			delete(addFromGOFLAGS, "test."+short)
    		}
    
    		args = remainingArgs
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/codehost/git_test.go

    	}
    	vcsName := "git"
    	for _, k := range []string{"hg"} {
    		if strings.Contains(remote, "/"+k+"/") {
    			vcsName = k
    		}
    	}
    	if testing.Short() && vcsName == "hg" {
    		t.Skipf("skipping hg test in short mode: hg is slow")
    	}
    	testenv.MustHaveExecPath(t, vcsName)
    	if runtime.GOOS == "android" && strings.HasSuffix(testenv.Builder(), "-corellium") {
    		testenv.SkipFlaky(t, 59940)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                ConstantValueKind.Long -> KaConstantValue.KaLongConstantValue(value as Long, psi)
                ConstantValueKind.Short -> KaConstantValue.KaShortConstantValue(value as Short, psi)
    
                ConstantValueKind.UnsignedByte -> KaConstantValue.KaUnsignedByteConstantValue(value as UByte, psi)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/cmd/trace/regions.go

    				if maxTotal < r.TotalTime {
    					maxTotal = r.TotalTime
    				}
    			}
    		}
    
    		// Sort.
    		sortBy := r.FormValue("sortby")
    		if _, ok := validNonOverlappingStats[sortBy]; ok {
    			slices.SortFunc(regions, func(a, b region) int {
    				return cmp.Compare(b.NonOverlappingStats[sortBy], a.NonOverlappingStats[sortBy])
    			})
    		} else {
    			// Sort by total time by default.
    			slices.SortFunc(regions, func(a, b region) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. src/hash/maphash/smhasher_test.go

    			b[1] = byte(j)
    			h.addB(b[:2])
    			if !testing.Short() {
    				for k := 0; k < 256; k++ {
    					b[2] = byte(k)
    					h.addB(b[:3])
    				}
    			}
    		}
    	}
    	h.check(t)
    }
    
    // Different length strings of all zeros have distinct hashes.
    func TestSmhasherZeros(t *testing.T) {
    	t.Parallel()
    	N := 256 * 1024
    	if testing.Short() {
    		N = 1024
    	}
    	h := newHashSet()
    	b := make([]byte, N)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. istioctl/pkg/dashboard/dashboard.go

    func promDashCmd(ctx cli.Context) *cobra.Command {
    	var opts clioptions.ControlPlaneOptions
    	cmd := &cobra.Command{
    		Use:   "prometheus",
    		Short: "Open Prometheus web UI",
    		Long:  `Open Istio's Prometheus dashboard`,
    		Example: `  istioctl dashboard prometheus
    
      # with short syntax
      istioctl dash prometheus
      istioctl d prometheus`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. pkg/controller/certificates/signer/signer.go

    type signer struct {
    	caProvider *caProvider
    
    	client  clientset.Interface
    	certTTL time.Duration // max TTL; individual requests may request shorter certs by setting spec.expirationSeconds
    
    	signerName           string
    	isRequestForSignerFn isRequestForSignerFunc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top