Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for Records (0.56 sec)

  1. tests/create_test.go

    	}
    
    	if _, ok := records[0]["@id"]; ok && fmt.Sprint(res2["id"]) != fmt.Sprint(records[0]["@id"]) {
    		t.Errorf("failed to create data from map with table, @id != id, got %v, expect %v", res2["id"], records[0]["@id"])
    	}
    
    	if _, ok := records[1]["id"]; ok && fmt.Sprint(res3["id"]) != fmt.Sprint(records[1]["@id"]) {
    		t.Errorf("failed to create data from map with table, @id != id")
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            def sizeDiff = cacheArtifact.bytes.length - unpackOp.details.archiveSize.toLong()
            sizeDiff > -100 && sizeDiff < 100
    
            unpackOp.result.archiveEntryCount == 5
        }
    
        def "records load failure for #exceptionType"() {
            def localCache = new TestBuildCache(file("local-cache"))
            settingsFile << localCache.localCacheConfiguration()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. chainable_api.go

    	return
    }
    
    // Assign provide attributes used in [FirstOrCreate] or [FirstOrInit]
    //
    // Assign adds attributes even if the record is found. If using FirstOrCreate, this means that
    // records will be updated even if they are found.
    //
    //	// assign an email regardless of if the record is not found
    //	db.Where(User{Name: "non_existing"}).Assign(User{Email: "******@****.***"}).FirstOrInit(&user)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/archive/tar/common.go

    	// PAXRecords is a map of PAX extended header records.
    	//
    	// User-defined records should have keys of the following form:
    	//	VENDOR.keyword
    	// Where VENDOR is some namespace in all uppercase, and keyword may
    	// not contain the '=' character (e.g., "GOLANG.pkg.version").
    	// The key and value should be non-empty UTF-8 strings.
    	//
    	// When Writer.WriteHeader is called, PAX records derived from the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. src/cmd/trace/main.go

    			f = pprofByGoroutine(computePprofSched(), parsed)
    		default:
    			logAndDie(fmt.Errorf("unknown pprof type %s\n", *pprofFlag))
    		}
    		records, err := f(&http.Request{})
    		if err != nil {
    			logAndDie(fmt.Errorf("failed to generate pprof: %v\n", err))
    		}
    		if err := traceviewer.BuildProfile(records).Write(os.Stdout); err != nil {
    			logAndDie(fmt.Errorf("failed to generate pprof: %v\n", err))
    		}
    		logAndDie(nil)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check.go

    		return // to is not a package-level object
    	}
    	from.addDep(to)
    }
    
    // Note: The following three alias-related functions are only used
    //       when Alias types are not enabled.
    
    // brokenAlias records that alias doesn't have a determined type yet.
    // It also sets alias.typ to Typ[Invalid].
    // Not used if check.conf.EnableAlias is set.
    func (check *Checker) brokenAlias(alias *TypeName) {
    	assert(!check.conf.EnableAlias)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. src/archive/tar/writer_test.go

    		//
    		//	$ bsdtar -tvf pax-global-records.tar
    		//	----------  0 0      0           0 Dec 31  1969 file1
    		//	----------  0 0      0           0 Dec 31  1969 file2
    		//	----------  0 0      0           0 Dec 31  1969 file3
    		//	----------  0 0      0           0 May 13  2014 file4
    		//
    		// GNU tar v1.27.1 applies global headers to subsequent records,
    		// but does not do the following properly:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    	// Enclosed functions that need to be compiled.
    	// Populated during walk.
    	Closures []*Func
    
    	// Parents records the parent scope of each scope within a
    	// function. The root scope (0) has no parent, so the i'th
    	// scope's parent is stored at Parents[i-1].
    	Parents []ScopeID
    
    	// Marks records scope boundary changes.
    	Marks []Mark
    
    	FieldTrack map[*obj.LSym]struct{}
    	DebugInfo  interface{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/pgen.go

    	fieldtrack(pp.Text.From.Sym, fn.FieldTrack)
    }
    
    // globalMapInitLsyms records the LSym of each map.init.NNN outlined
    // map initializer function created by the compiler.
    var globalMapInitLsyms map[*obj.LSym]struct{}
    
    // RegisterMapInitLsym records "s" in the set of outlined map initializer
    // functions.
    func RegisterMapInitLsym(s *obj.LSym) {
    	if globalMapInitLsyms == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    	WasmI64
    	WasmF32
    	WasmF64
    	WasmPtr
    )
    
    type InlMark struct {
    	// When unwinding from an instruction in an inlined body, mark
    	// where we should unwind to.
    	// id records the global inlining id of the inlined body.
    	// p records the location of an instruction in the parent (inliner) frame.
    	p  *Prog
    	id int32
    }
    
    // Mark p as the instruction to set as the pc when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top