Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 960 for Unused1 (0.22 sec)

  1. 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)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

                baseProperty: [(TYPE): Small],
                subclassProperty: [(TYPE): Large]
            ]
        }
    
        @SuppressWarnings("unused")
        interface BaseTypeWithSuperClassProperties {
            @Small
            String getBaseProperty()
        }
    
        @SuppressWarnings("unused")
        interface TypeWithSuperclassProperties extends BaseTypeWithSuperClassProperties {
            @Large
            String getSubclassProperty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. 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)
  4. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

      private static class VisibilityMethods {
    
        @SuppressWarnings("unused") // Called by reflection
        private void privateMethod() {}
    
        @SuppressWarnings("unused") // Called by reflection
        void packagePrivateMethod() {}
    
        @SuppressWarnings("unused") // Called by reflection
        protected void protectedMethod() {}
    
        @SuppressWarnings("unused") // Called by reflection
        public void publicMethod() {}
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        // ignored by testEquals()
        GoodEquals(@SuppressWarnings("unused") NotInstantiable x) {
          this.a = "x";
          this.b = -1;
        }
    
        // will keep trying
        public GoodEquals(@SuppressWarnings("unused") NotInstantiable x, int b) {
          this.a = "x";
          this.b = b;
        }
    
        // keep trying
        @SuppressWarnings("unused")
        static GoodEquals create(int a, int b) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

        }
    
        def 'changes to an unused dependency rebuilds everything'() {
            given:
            def outputs = new CompilationOutputsFixture(file("build/obj/main/debug"), [".o"])
            def app = new SwiftApp()
            createDirs("unused")
            settingsFile << """
                rootProject.name = 'app'
                include 'unused'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.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. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

        /**
         * Configures the classpath of the init script.
         */
        @Suppress("unused")
        open fun initscript(block: ScriptHandlerScope.() -> Unit): Unit =
            internalError()
    
        /**
         * Logger for init scripts. You can use this in your init script to write log messages.
         */
        @Suppress("unused")
        val logger: Logger by unsafeLazy { Logging.getLogger(Gradle::class.java) }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top