Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for Epoch (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Oerrors     uint32
    	Collisions  uint32
    	Ibytes      uint32
    	Obytes      uint32
    	Imcasts     uint32
    	Omcasts     uint32
    	Iqdrops     uint32
    	Noproto     uint32
    	Hwassist    uint32
    	Epoch       int32
    	Lastchange  Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Metric  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go

    	Oerrors     uint64
    	Collisions  uint64
    	Ibytes      uint64
    	Obytes      uint64
    	Imcasts     uint64
    	Omcasts     uint64
    	Iqdrops     uint64
    	Noproto     uint64
    	Hwassist    uint64
    	Epoch       int64
    	Lastchange  Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Metric  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. docs/multi-user/README.md

    	}
      ]
    }
    ```
    
    #### Common information available in all requests
    
    - `aws:CurrentTime` - This can be used for conditions that check the date and time.
    - `aws:EpochTime` - This is the date in epoch or Unix time, for use with date/time conditions.
    - `aws:PrincipalType` - This value indicates whether the principal is an account (Root credential), user (MinIO user), or assumed role (STS)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    					cel.Variable(NamespaceVarName, namespaceType.CelType()),
    					cel.Variable(RequestVarName, requestType.CelType()))
    
    				extended, err := baseEnv.Extend(
    					environment.VersionedOptions{
    						// Feature epoch was actually 1.26, but we artificially set it to 1.0 because these
    						// options should always be present.
    						IntroducedVersion: version.MajorMinor(1, 0),
    						EnvOptions:        envOpts,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Oerrors     uint64
    	Collisions  uint64
    	Ibytes      uint64
    	Obytes      uint64
    	Imcasts     uint64
    	Omcasts     uint64
    	Iqdrops     uint64
    	Noproto     uint64
    	Hwassist    uint64
    	Epoch       int64
    	Lastchange  Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Metric  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/collectors/resource_metrics.go

    		nil,
    		nil,
    		metrics.STABLE,
    		"")
    
    	containerStartTimeDesc = metrics.NewDesc("container_start_time_seconds",
    		"Start time of the container since unix epoch in seconds",
    		[]string{"container", "pod", "namespace"},
    		nil,
    		metrics.STABLE,
    		"")
    )
    
    // NewResourceMetricsCollector returns a metrics.StableCollector which exports resource metrics
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 07:13:37 UTC 2023
    - 9.2K bytes
    - Viewed (1)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    	Oerrors     uint64
    	Collisions  uint64
    	Ibytes      uint64
    	Obytes      uint64
    	Imcasts     uint64
    	Omcasts     uint64
    	Iqdrops     uint64
    	Noproto     uint64
    	Hwassist    uint64
    	Epoch       int64
    	Lastchange  Timeval
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Metric  int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. src/archive/tar/format.go

    // the maximum number of bytes allowed for each string field and
    // the integer type used to store each numeric field
    // (where timestamps are stored as the number of seconds since the Unix epoch).
    //
    // The table's lower portion shows specialized features of each format,
    // such as supported string encodings, support for sub-second timestamps,
    // or support for sparse files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    		// we only need its structure but not the variable itself
    		varOpts = append(varOpts, cel.Variable("authorizer", library.AuthorizerType))
    	}
    
    	return baseEnv.Extend(
    		environment.VersionedOptions{
    			// Feature epoch was actually 1.26, but we artificially set it to 1.0 because these
    			// options should always be present.
    			IntroducedVersion: version.MajorMinor(1, 0),
    			EnvOptions:        varOpts,
    			DeclTypes:         declTypes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

        builder = builder.addAll(headersOf())
        builder = builder.add("", Date(0L))
        builder = builder.add("", Instant.EPOCH)
        builder = builder.set("", "")
        builder = builder.set("", Date(0L))
        builder = builder.set("", Instant.EPOCH)
        builder = builder.removeAll("")
        val get: String? = builder[""]
        val headers: Headers = builder.build()
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top