Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for ts (0.09 sec)

  1. src/net/http/cgi/host_test.go

    func TestCopyError(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	h := &Handler{
    		Path: os.Args[0],
    		Root: "/test.cgi",
    	}
    	ts := httptest.NewServer(h)
    	defer ts.Close()
    
    	conn, err := net.Dial("tcp", ts.Listener.Addr().String())
    	if err != nil {
    		t.Fatal(err)
    	}
    	req, _ := http.NewRequest("GET", "http://example.com/test.cgi?bigresponse=1", nil)
    	err = req.Write(conn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/stmt.go

    			if T == nil && t == nil || T != nil && t != nil && Identical(T, t) {
    				// talk about "case" rather than "type" because of nil case
    				Ts := "nil"
    				if T != nil {
    					Ts = TypeString(T, check.qualifier)
    				}
    				err := check.newError(DuplicateCase)
    				err.addf(e, "duplicate case %s in type switch", Ts)
    				err.addf(other, "previous case")
    				err.report()
    				continue L
    			}
    		}
    		seen[T] = e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. operator/pkg/translate/translate.go

    func renderFeatureComponentPathTemplate(tmpl string, componentName name.ComponentName) (string, error) {
    	type Temp struct {
    		ComponentName name.ComponentName
    	}
    	ts := Temp{
    		ComponentName: componentName,
    	}
    	return util.RenderTemplate(tmpl, ts)
    }
    
    // renderResourceComponentPathTemplate renders a template of the form <path>{{.ResourceName}}<path>{{.ContainerName}}<path> with
    // the supplied parameters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_PIPE2                  = 538 // { int pipe2(int *fildes, int flags); }
    	SYS_UTIMENSAT              = 539 // { int utimensat(int fd, const char *path, const struct timespec *ts, int flags); }
    	SYS_FUTIMENS               = 540 // { int futimens(int fd, const struct timespec *ts); }
    	SYS_ACCEPT4                = 541 // { int accept4(int s, caddr_t name, int *anamelen, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  5. cmd/object-api-datatypes.go

    		cinfo.UserDefined[k] = v
    	}
    	return cinfo
    }
    
    func (o ObjectInfo) tierStats() tierStats {
    	ts := tierStats{
    		TotalSize:   uint64(o.Size),
    		NumVersions: 1,
    	}
    	// the current version of an object is accounted towards objects count
    	if o.IsLatest {
    		ts.NumObjects = 1
    	}
    	return ts
    }
    
    // ToObjectInfo converts a replication object info to a partial ObjectInfo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    00000150  88 7a 36 47 a5 08 0d 92  42 5b c2 81 c0 be 97 79  |.z6G....B[.....y|
    00000160  98 40 fb 4f 6d 14 fd 2b  13 8b c2 a5 2e 67 d8 d4  |.@.Om..+.....g..|
    00000170  09 9e d6 22 38 b7 4a 0b  74 73 2b c2 34 f1 d1 93  |..."8.J.ts+.4...|
    00000180  e5 96 d9 74 7b f3 58 9f  6c 61 3c c0 b0 41 d4 d9  |...t{.X.la<..A..|
    00000190  2b 2b 24 23 77 5b 1c 3b  bd 75 5d ce 20 54 cf a1  |++$#w[.;.u]. T..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    					}
    				}
    			} else {
    				ts := tierStats{
    					TotalSize:   uint64(task.objInfo.Size),
    					NumVersions: 1,
    				}
    				if task.objInfo.IsLatest {
    					ts.NumObjects = 1
    				}
    				t.addLastDayStats(task.event.StorageClass, ts)
    			}
    			t.activeTasks.Add(-1)
    		}
    	}
    }
    
    func (t *transitionState) addLastDayStats(tier string, ts tierStats) {
    	t.lastDayMu.Lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/syscall/syscall_solaris.go

    	name, e1 := gethostname()
    	if e1 != 0 {
    		err = Errno(e1)
    	}
    	return name, err
    }
    
    func UtimesNano(path string, ts []Timespec) error {
    	if len(ts) != 2 {
    		return EINVAL
    	}
    	return utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    //sys	fcntl(fd int, cmd int, arg int) (val int, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate_value.go

    func (t *ReverseTranslator) initAPIAndComponentMapping() {
    	ts := NewTranslator()
    	t.APIMapping = make(map[string]*Translation)
    	t.KubernetesMapping = make(map[string]*Translation)
    	t.ValuesToComponentName = make(map[string]name.ComponentName)
    	for valKey, outVal := range ts.APIMapping {
    		t.APIMapping[outVal.OutPath] = &Translation{valKey, nil}
    	}
    	for cn, cm := range ts.ComponentMaps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. cmd/data-usage-cache.go

    type tierStats struct {
    	TotalSize   uint64 `msg:"ts"`
    	NumVersions int    `msg:"nv"`
    	NumObjects  int    `msg:"no"`
    }
    
    func (ts tierStats) add(u tierStats) tierStats {
    	return tierStats{
    		TotalSize:   ts.TotalSize + u.TotalSize,
    		NumVersions: ts.NumVersions + u.NumVersions,
    		NumObjects:  ts.NumObjects + u.NumObjects,
    	}
    }
    
    //msgp:tuple replicationStatsV1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
Back to top