Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,455 for data1 (0.06 sec)

  1. src/syscall/types_windows.go

    	Addr      Pointer
    	Next      *AddrinfoW
    }
    
    const (
    	AI_PASSIVE     = 1
    	AI_CANONNAME   = 2
    	AI_NUMERICHOST = 4
    )
    
    type GUID struct {
    	Data1 uint32
    	Data2 uint16
    	Data3 uint16
    	Data4 [8]byte
    }
    
    var WSAID_CONNECTEX = GUID{
    	0x25a207b9,
    	0xddf3,
    	0x4660,
    	[8]byte{0x8e, 0xe9, 0x76, 0xe5, 0x8c, 0x74, 0x06, 0x3e},
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            when:
            cleanBuildDir()
            withBuildCache().run "customTask"
            then:
            skipped ":customTask"
            file("build/output1.txt").text == "data1"
            file("build/output2.txt").text == "data2"
        }
    
        def "cacheable task with multiple outputs with not matching cardinality don't get cached"() {
            buildFile << """
                task customTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	OID_SERVER_GATED_CRYPTO = []byte("1.3.6.1.4.1.311.10.3.3\x00")
    	OID_SGC_NETSCAPE        = []byte("2.16.840.1.113730.4.1\x00")
    
    	WINTRUST_ACTION_GENERIC_VERIFY_V2 = GUID{
    		Data1: 0xaac56b,
    		Data2: 0xcd44,
    		Data3: 0x11d0,
    		Data4: [8]byte{0x8c, 0xc2, 0x0, 0xc0, 0x4f, 0xc2, 0x95, 0xee},
    	}
    )
    
    // Pointer represents a pointer to an arbitrary Windows type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. cmd/server-main.go

      {{end}}{{end}}
    EXAMPLES:
      1. Start MinIO server on "/home/shared" directory.
         {{.Prompt}} {{.HelpName}} /home/shared
    
      2. Start single node server with 64 local drives "/mnt/data1" to "/mnt/data64".
         {{.Prompt}} {{.HelpName}} /mnt/data{1...64}
    
      3. Start distributed MinIO server on an 32 node setup with 32 drives each, run following command on all the nodes
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. schema/index_test.go

    	// Composite Index: Nested structure.
    	Data1A string `gorm:"index:,composite:comp_id1"`
    	CompIdxLevel1C
    
    	// Composite Index: Unique and priority.
    	Data2A string `gorm:"index:,unique,composite:comp_id2,priority:2"`
    	CompIdxLevel2C
    }
    
    type CompIdxLevel1C struct {
    	CompIdxLevel1B
    	Data1C string `gorm:"index:,composite:comp_id1"`
    }
    
    type CompIdxLevel1B struct {
    	Data1B string `gorm:"index:,composite:comp_id1"`
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	data[len(prefix)+1] = 0
    	if ctxt.Arch.ByteOrder == binary.BigEndian {
    		data[len(prefix)+1] = 1
    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    	data = appendString(data, strdata["runtime.buildVersion"])
    	data = appendString(data, strdata["runtime.modinfo"])
    	// MacOS linker gets very upset if the size os not a multiple of alignment.
    	for len(data)%16 != 0 {
    		data = append(data, 0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/data.go

    	if int64(cap(s.P)) >= c {
    		return
    	}
    	if s.P == nil {
    		s.P = make([]byte, 0, c)
    		return
    	}
    	b := make([]byte, len(s.P), c)
    	copy(b, s.P)
    	s.P = b
    }
    
    // prepwrite prepares to write data of size siz into s at offset off.
    func (s *LSym) prepwrite(ctxt *Link, off int64, siz int) {
    	if off < 0 || siz < 0 || off >= 1<<30 {
    		ctxt.Diag("prepwrite: bad off=%d siz=%d s=%v", off, siz, s)
    	}
    	switch s.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 14:38:53 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      // If `data_.size() + len` is greater than `SIZE_MAX` then the left hand side
      // will overflow to something less than max_length_. After checking `len <=
      // max_length_` we can use this subtraction to check for overflow.
      if (len > max_length_ || data_.size() >= max_length_ - len)
        return absl::ResourceExhaustedError("Buffer overflow");
      data_.resize(data_.size() + len);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-data-type.pbtxt

    # Test the handling of the input data types. In particular, if the data type
    # for an input graph node is specified via command line options, use it.
    # otherwise, use the data type of the node in the graph.
    
    node {
      name: "p"
      op: "Placeholder"
      attr {
        key: "dtype"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:32:15 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. .github/workflows/mint/minio-pools.yaml

    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
          - pdata1-1:/pdata1
          - pdata1-2:/pdata2
    
      minio2:
        <<: *minio-common
        hostname: minio2
        volumes:
          - pdata2-1:/pdata1
          - pdata2-2:/pdata2
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - pdata3-1:/pdata1
          - pdata3-2:/pdata2
    
      minio4:
        <<: *minio-common
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top