Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,290 for data_ (0.09 sec)

  1. src/runtime/debuglog.go

    //go:nosplit
    func (r *debugLogReader) readUint16LEAt(pos uint64) uint16 {
    	return uint16(r.data.b[pos%uint64(len(r.data.b))]) |
    		uint16(r.data.b[(pos+1)%uint64(len(r.data.b))])<<8
    }
    
    //go:nosplit
    func (r *debugLogReader) readUint64LEAt(pos uint64) uint64 {
    	var b [8]byte
    	for i := range b {
    		b[i] = r.data.b[pos%uint64(len(r.data.b))]
    		pos++
    	}
    	return uint64(b[0]) | uint64(b[1])<<8 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K 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/os/readfrom_linux_test.go

    			t.Fatalf("failed to rewind the file: %v", err)
    		}
    
    		data2, err := io.ReadAll(f)
    		if err != nil {
    			t.Fatalf("failed to read from the file: %v", err)
    		}
    
    		// It should wind up a double of the original data.
    		if strings.Repeat(string(data), 2) != string(data2) {
    			t.Fatalf("data mismatch: %s != %s", string(data), string(data2))
    		}
    	})
    	t.Run("NotRegular", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        }
    
    
    sealed class TypeAccessibility {
        data class Accessible(val type: SchemaType) : TypeAccessibility()
        data class Inaccessible(val type: SchemaType, val reasons: List<InaccessibilityReason>) : TypeAccessibility()
    }
    
    
    sealed class InaccessibilityReason {
    
        data class NonPublic(val type: String) : InaccessibilityReason()
        data class NonAvailable(val type: String) : InaccessibilityReason()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. callbacks/preload.go

    			fieldValues[idx], _ = field.ValueOf(tx.Statement.Context, elem)
    		}
    
    		datas, ok := identityMap[utils.ToStringKey(fieldValues...)]
    		if !ok {
    			return fmt.Errorf("failed to assign association %#v, make sure foreign fields exists", elem.Interface())
    		}
    
    		for _, data := range datas {
    			reflectFieldValue := rel.Field.ReflectValueOf(tx.Statement.Context, data)
    			if reflectFieldValue.Kind() == reflect.Ptr && reflectFieldValue.IsNil() {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/runtime/cgocall.go

    			pp := *(*unsafe.Pointer)(unsafe.Pointer(addr))
    			if cgoIsGoPointer(pp) && !isPinned(pp) {
    				panic(errorString(msg))
    			}
    		}
    		return
    	}
    
    	for _, datap := range activeModules() {
    		if cgoInRange(p, datap.data, datap.edata) || cgoInRange(p, datap.bss, datap.ebss) {
    			// We have no way to know the size of the object.
    			// We have to assume that it might contain a pointer.
    			panic(errorString(msg))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho.go

    			ml := newMachoLoad(ctxt.Arch, LC_DYLD_INFO_ONLY, 10)
    			ml.data[0] = uint32(linkoff)      // rebase off
    			ml.data[1] = uint32(s1)           // rebase size
    			ml.data[2] = uint32(linkoff + s1) // bind off
    			ml.data[3] = uint32(s2)           // bind size
    			ml.data[4] = 0                    // weak bind off
    			ml.data[5] = 0                    // weak bind size
    			ml.data[6] = 0                    // lazy bind off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  8. src/encoding/xml/read_test.go

    type MyStruct struct {
    	Data *MyCharData
    	Attr *MyAttr `xml:",attr"`
    
    	Data2 MyCharData
    	Attr2 MyAttr `xml:",attr"`
    }
    
    func TestUnmarshaler(t *testing.T) {
    	xml := `<?xml version="1.0" encoding="utf-8"?>
    		<MyStruct Attr="attr1" Attr2="attr2">
    		<Data>hello <!-- comment -->world</Data>
    		<Data2>howdy <!-- comment -->world</Data2>
    		</MyStruct>
    	`
    
    	var m MyStruct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. cmd/testdata/xl-meta-merge.zip

    view MinIO SDKs for supported languages. > NOTE: To deploy MinIO on with persistent storage, you must map local persistent directories from the host OS to the container using the `podman -v` option. For example, `-v /mnt/data:/data` maps the host OS drive at `/mnt/data` to `/data` on the container. ## macOS Use the following commands to run a standalone MinIO server on macOS. Standalone MinIO servers are best suited for early development and evaluation. Certain features such as versioning, object...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. tests/create_test.go

    	}
    }
    
    func TestCreateEmptySlice(t *testing.T) {
    	data := []User{}
    	if err := DB.Create(&data).Error; err != gorm.ErrEmptySlice {
    		t.Errorf("no data should be created, got %v", err)
    	}
    
    	sliceMap := []map[string]interface{}{}
    	if err := DB.Model(&User{}).Create(&sliceMap).Error; err != gorm.ErrEmptySlice {
    		t.Errorf("no data should be created, got %v", err)
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top