Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,394 for Unused (0.1 sec)

  1. 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)
  2. internal/s3select/unused-errors.go

    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errIllegalSQLFunctionArgument(err error) *s3Error {
    	return &s3Error{
    		code:       "IllegalSqlFunctionArgument",
    		message:    "Illegal argument was used in the SQL function.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errMultipleDataSourcesUnsupported(err error) *s3Error {
    	return &s3Error{
    		code:       "MultipleDataSourcesUnsupported",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         */
        @Suppress("unused")
        fun tarTree(tarPath: Any): FileTree =
            fileOperations.tarTree(tarPath)
    
        /**
         * Copies the specified files.
         *
         * @param configuration The block to use to configure the [CopySpec].
         * @return `WorkResult` that can be used to check if the copy did any work.
         */
        @Suppress("unused")
    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