Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 147 for Tstamp (0.19 sec)

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

    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    
    type BpfHdr struct {
    	Tstamp  Timeval
    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	_       [6]byte
    }
    
    type BpfZbufHeader struct {
    	Kernel_gen uint32
    	Kernel_len uint32
    	User_gen   uint32
    	_          [5]uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    
    type BpfHdr struct {
    	Tstamp  Timeval32
    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	_       [2]byte
    }
    
    type Termios struct {
    	Iflag  uint64
    	Oflag  uint64
    	Cflag  uint64
    	Lflag  uint64
    	Cc     [20]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    
    type BpfHdr struct {
    	Tstamp  Timeval32
    	Caplen  uint32
    	Datalen uint32
    	Hdrlen  uint16
    	_       [2]byte
    }
    
    type Termios struct {
    	Iflag  uint64
    	Oflag  uint64
    	Cflag  uint64
    	Lflag  uint64
    	Cc     [20]uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    # 'go build' on a package in the same git repo
    # succeeds and stamps VCS metadata by default.
    
    go build -o example.exe .
    go version -m example.exe
    stdout '^\tbuild\tvcs=git$'
    stdout '^\tbuild\tvcs.modified=false$'
    
    
    # Building a binary from a different (nested) VCS repo should not stamp VCS
    # info. It should be an error if VCS stamps are requested explicitly with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyDocStampsIntegrationTest.groovy

                }
            """
    
            file("src/main/groovy/pkg/Thing.groovy") << """
                package pkg
    
                class Thing {}
            """
        }
    
        def "time and version stamp can be enabled"() {
            when:
            buildFile << """
                groovydoc {
                  noTimestamp = false
                  noVersionStamp = false
                }
            """
    
            run "groovydoc"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    type IfAddrmsg struct {
    	Family    uint8
    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type IfaCacheinfo struct {
    	Prefered uint32
    	Valid    uint32
    	Cstamp   uint32
    	Tstamp   uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  7. src/runtime/mgclimit.go

    			print("runtime: want=", typ, " got=", stamp.typ(), "\n")
    			throw("limiterEvent.stop: found wrong event in p's limiter event slot")
    		}
    		if e.stamp.CompareAndSwap(uint64(stamp), uint64(limiterEventStampNone)) {
    			break
    		}
    	}
    	duration := stamp.duration(now)
    	if duration == 0 {
    		// It's possible that we're missing time because we crossed a
    		// 2^(64-limiterEventBits) boundary between the start and end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. internal/s3select/unused-errors.go

    		message:    "Time stamp format pattern contains a valid format symbol that cannot be applied to time stamp parsing in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errEvaluatorTimestampFormatPatternDuplicateFields(err error) *s3Error {
    	return &s3Error{
    		code:       "EvaluatorTimestampFormatPatternDuplicateFields",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_buildvcs.txt

    # in the build settings. (It isn't worth the latency hit, given that
    # test binaries are almost never distributed to users.)
    
    [short] skip
    [!git] skip
    
    exec git init
    
    # The test binaries should not have VCS settings stamped by default.
    # (The test itself verifies that.)
    go test . ./testonly
    
    # However, setting -buildvcs explicitly should override that and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/output-ivy.xml

      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <info organisation="org.gradle.sample" module="project1" revision="1.0" status="integration" publication="«PUBLICATION-TIME-STAMP»">
        <description>The first project</description>
      </info>
      <configurations>
        <conf name="compile" visibility="public"/>
        <conf name="default" visibility="public" extends="runtime"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top