Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for birini (0.09 sec)

  1. src/encoding/json/decode_test.go

    	}
    	if nulls.Time.String() != before {
    		t.Errorf("Unmarshal of time.Time null set time to %v", nulls.Time.String())
    	}
    	if nulls.BigInt.String() != "123" {
    		t.Errorf("Unmarshal of big.Int null set int to %v", nulls.BigInt.String())
    	}
    }
    
    type MustNotUnmarshalJSON struct{}
    
    func (x MustNotUnmarshalJSON) UnmarshalJSON(data []byte) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/html/template/exec_test.go

    type execTest struct {
    	name   string
    	input  string
    	output string
    	data   any
    	ok     bool
    }
    
    // bigInt and bigUint are hex string representing numbers either side
    // of the max int boundary.
    // We do it this way so the test doesn't depend on ints being 32 bits.
    var (
    	bigInt  = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeFor[int]().Bits()-1)-1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    type execTest struct {
    	name   string
    	input  string
    	output string
    	data   any
    	ok     bool
    }
    
    // bigInt and bigUint are hex string representing numbers either side
    // of the max int boundary.
    // We do it this way so the test doesn't depend on ints being 32 bits.
    var (
    	bigInt  = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeFor[int]().Bits()-1)-1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    	}
    
    	work.bytesMarked = 0
    	work.initialHeapLive = gcController.heapLive.Load()
    }
    
    // Hooks for other packages
    
    var poolcleanup func()
    var boringCaches []unsafe.Pointer  // for crypto/internal/boring
    var uniqueMapCleanup chan struct{} // for unique
    
    // sync_runtime_registerPoolCleanup should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		fx *xdsfake.Updater,
    		controller *FakeController,
    	) {
    		// update meshConfig
    		if err := testMeshWatcher.Update(meshConfig, time.Second*5); err != nil {
    			t.Fatalf("%v", err)
    		}
    
    		// assert firing of service events
    		for i := 0; i < expectedNumSvcEvents; i++ {
    			fx.WaitOrFail(t, "service")
    		}
    
    		eventually(t, func() bool {
    			svcList := controller.Services()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    	length int64
    }
    
    var hostobj []Hostobj
    
    // These packages can use internal linking mode.
    // Others trigger external mode.
    var internalpkg = []string{
    	"crypto/internal/boring",
    	"crypto/internal/boring/syso",
    	"crypto/x509",
    	"net",
    	"os/user",
    	"runtime/cgo",
    	"runtime/race",
    	"runtime/race/internal/amd64v1",
    	"runtime/race/internal/amd64v3",
    	"runtime/msan",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    		// We don't really care if we succeed in stopping the timer. One
    		// reason we might fail is that we've already woken up, but the timer
    		// might be in the process of firing on some other P; essentially we're
    		// racing with it. That's totally OK. Double wake-ups are perfectly safe.
    		s.timer.stop()
    		unlock(&s.lock)
    	} else {
    		unlock(&s.lock)
    		slept = s.sleepStub(sleepTime)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    				testenv.SkipFlaky(t, 43120)
    			}
    			t.Errorf("error string = %q; missing timeout substring", got)
    		}
    
    		break
    	}
    }
    
    // Client.Timeout firing before getting to the body
    func TestClientTimeout_Headers(t *testing.T) { run(t, testClientTimeout_Headers) }
    func testClientTimeout_Headers(t *testing.T, mode testMode) {
    	donec := make(chan bool, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    This is because we read the system property at configuration time, hence requiring Gradle to run the configuration phase again when the value of that property changes.
    Fixing that is as simple as obtaining the provider of the system property and wiring it to the task input, without reading it at configuration time.
    
    ====
    include::sample[dir="snippets/configurationCache/problemsFixedReuse/kotlin",files="build.gradle.kts[tags=fixed-reuse]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    			// of its import path, and a wildcard can even match packages in modules
    			// with totally different paths. Because of these effects, and because any
    			// change to the selected version of a module can bring in entirely new
    			// module paths as dependencies, we need to reissue queries whenever we
    			// change the build list.
    			//
    			// The result of any version query for a given module — even "upgrade" or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top