Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,031 for bin2 (0.17 sec)

  1. src/cmd/go/testdata/script/build_output.txt

    [GOOS:windows] go build -o bin\x x.go
    [GOOS:windows] exists -exec bin\x
    [GOOS:windows] rm bin
    
    [GOOS:windows] ! exists bin
    [GOOS:windows] go build -o bin\ x.go
    [GOOS:windows] exists -exec bin\x.exe
    [GOOS:windows] rm bin
    
    ! exists bin
    mkdir bin
    go build -o bin x.go
    exists -exec bin/x$GOEXE
    rm bin
    
    go build p.go
    ! exists p
    ! exists p.a
    ! exists p.o
    ! exists p.exe
    
    wait # for isarchive
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/BaseTypes.kt

    import org.gradle.internal.serialize.graph.codecs.BindingsBuilder
    
    
    internal
    fun BindingsBuilder.baseTypes() {
        stdlibTypes()
        guavaTypes()
        bind(JavaRecordCodec)
        bind(BuildIdentifierSerializer())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/form-validator/html5.js

    nd"),b||f.filter("input[placeholder]").each(function(){this.__defaultValue=this.getAttribute("placeholder"),a(this).bind("focus",function(){this.value===this.__defaultValue&&(this.value="",a(this).removeClass("showing-placeholder"))}).bind("blur",function(){""===a.trim(this.value)&&(this.value=this.__defaultValue,a(this).addClass("showing-placeholder"))})})})};a.formUtils.$win.bind("validatorsLoaded formValidationSetup",function(b,c){c||(c=a("form")),e(c)}),a.formUtils.setupValidationUsingHTML5Attr=e}(a,window)});...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/BUILD

            "//tensorflow/lite/tools/optimize:testdata/gather_nd.bin",
            "//tensorflow/lite/tools/optimize:testdata/lstm_calibrated.bin",
            "//tensorflow/lite/tools/optimize:testdata/lstm_calibrated2.bin",
            "//tensorflow/lite/tools/optimize:testdata/lstm_quantized.bin",
            "//tensorflow/lite/tools/optimize:testdata/lstm_quantized2.bin",
            "//tensorflow/lite/tools/optimize:testdata/maximum.bin",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. pkg/flag/flag.go

    type Flaggable interface {
    	string | bool | uint16 | time.Duration
    }
    
    var replacer = strings.NewReplacer("-", "_")
    
    // Bind registers a flag to the FlagSet. When parsed, the value will be set via pointer.
    // Usage:
    //
    //	cfg := Config{Foo: "default-foo"}
    //	flag.Bind(fs, "foo", "f", "the foo value", &cfg.Foo)
    func Bind[T Flaggable](fs *pflag.FlagSet, name, shorthand, usage string, val *T) {
    	switch d := any(val).(type) {
    	case *string:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. test/codegen/memops_bigoffset.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    type big1 struct {
    	w [1<<30 - 1]uint32
    }
    type big2 struct {
    	d [1<<29 - 1]uint64
    }
    
    func loadLargeOffset(sw *big1, sd *big2) (uint32, uint64) {
    
    	// ppc64x:`MOVWZ\s+[0-9]+\(R[0-9]+\)`,-`ADD`
    	a3 := sw.w[1<<10]
    	// ppc64le/power10:`MOVWZ\s+[0-9]+\(R[0-9]+\),\sR[0-9]+`,-`ADD`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 18:20:54 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/lca.go

    	for logS, s := 1, 2; s < len(tour); logS, s = logS+1, s*2 {
    		r := make([]ID, len(tour)-s+1)
    		for i := 0; i < len(tour)-s+1; i++ {
    			bid := rangeMin[logS-1][i]
    			bid2 := rangeMin[logS-1][i+s/2]
    			if blocks[bid2].depth < blocks[bid].depth {
    				bid = bid2
    			}
    			r[i] = bid
    		}
    		rangeMin = append(rangeMin, r)
    	}
    
    	return &lcaRange{blocks: blocks, rangeMin: rangeMin}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 21:52:15 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. cni/deployments/kubernetes/Dockerfile.install-cni

    LABEL description="Istio CNI plugin installer."
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istio-cni /opt/cni/bin/istio-cni
    COPY ${TARGETARCH:-amd64}/install-cni /usr/local/bin/install-cni
    
    ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/cni/bin
    WORKDIR /opt/cni/bin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1002 bytes
    - Viewed (0)
  9. pkg/scheduler/testing/framework/framework_helpers.go

    	return RegisterPluginAsExtensions(pluginName, pluginNewFunc, "PreScore")
    }
    
    // RegisterBindPlugin returns a function to register a Bind Plugin to a given registry.
    func RegisterBindPlugin(pluginName string, pluginNewFunc runtime.PluginFactory) RegisterPluginFunc {
    	return RegisterPluginAsExtensions(pluginName, pluginNewFunc, "Bind")
    }
    
    // RegisterPluginAsExtensions returns a function to register a Plugin as given extensionPoints to a given registry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/distpack/test.go

    	{name: "go/VERSION.cache", exclude: true},
    	{name: "go/bin", exclude: true},
    	{name: "go/pkg", exclude: true},
    	{name: "go/src/cmd/dist/dist", exclude: true},
    	{name: "go/src/cmd/dist/dist.exe", exclude: true},
    
    	{name: "go/bin/go", goos: "linux"},
    	{name: "go/bin/go", goos: "darwin"},
    	{name: "go/bin/go", goos: "windows", exclude: true},
    	{name: "go/bin/go.exe", goos: "windows"},
    	{name: "go/bin/gofmt", goos: "linux"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top