Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 987 for Unused (0.13 sec)

  1. src/cmd/vet/testdata/unused/unused.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the unusedresult checker.
    
    package unused
    
    import "fmt"
    
    func _() {
    	fmt.Errorf("") // ERROR "result of fmt.Errorf call not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 324 bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-monolithic/src/unused.c

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 42 bytes
    - Viewed (0)
  3. tests/testdata/certs/dns/cert-chain-unused.pem

    Faseela K <******@****.***> 1686686394 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 13 19:59:54 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_retract_v1.0.0-unused.txt

    -- .mod --
    module example.com/retract
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0-unused"}
    
    -- retract.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 122 bytes
    - Viewed (0)
  5. pkg/util/coverage/fake_test_deps.go

    func (fakeTestDeps) StartCPUProfile(io.Writer) error {
    	return nil
    }
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StopCPUProfile() {}
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StartTestLog(io.Writer) {}
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 15:31:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/TypeMirrorToType.java

            throw unsupportedType(t);
        }
    
        @Override
        public Type visitNoType(NoType t, Void unused) {
            return Type.VOID_TYPE;
        }
    
        @Override
        public Type visitNull(NullType t, Void unused) {
            throw unsupportedType(t);
        }
    
        @Override
        public Type visitArray(ArrayType t, Void unused) {
            return Type.getObjectType("[" + visit(t.getComponentType(), null).getDescriptor());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_patterns.txt

    env CGO_ENABLED=0
    go list -f '{{.ImportPath}}: {{.Match}}' all ... example.com/m/... ./... ./xyz...
    ! stdout example.com/m/useC
    
    -- m/go.mod --
    module example.com/m
    
    require example.com/unused v0.0.0 // indirect
    replace example.com/unused => ../unused
    
    require example.com/m/nested v0.0.0 // indirect
    replace example.com/m/nested => ../nested
    
    -- m/useC/useC.go --
    package useC
    import _ "C" // "C" is a pseudo-package, not an actual one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy_test.go

    	}
    	if v.Value().(bool) != true {
    		t.Errorf("%q: wrong result: %v", exp, v.Value())
    	}
    
    	// add unused as a string
    	variablesType.Fields["unused"] = apiservercel.NewDeclField("unused", apiservercel.StringType, true, nil, nil)
    	variablesMap.Append("unused", func(_ *MapValue) ref.Val {
    		t.Fatalf("unused variable must not be evaluated")
    		return nil
    	})
    
    	exp = "variables.dict.a + ' ' + variables.dict.a + ' ' + variables.foo"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_modinfo.txt

    [short] skip
    
    # Build a binary that accesses its debug info by reading the binary directly
    # (rather than through debug.ReadBuildInfo).
    # The debug info should still be present (golang.org/issue/28753).
    cd unused
    go build
    exec ./unused$GOEXE
    
    -- x/go.mod --
    module x
    
    -- x/lib/lib.go --
    // Package lib accesses runtime/debug.modinfo before package main's init
    // functions have run.
    package lib
    
    import "runtime/debug"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/link4.txt

    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    [z]:	https://go.dev
    -- gofmt --
    These are not links.
    
    [x
    
    [x]:
    
    [x]:https://go.dev
    
    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    [z]: https://go.dev
    -- text --
    These are not links.
    
    [x
    
    [x]:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 1020 bytes
    - Viewed (0)
Back to top