Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 960 for Unused1 (0.11 sec)

  1. android/guava-tests/test/com/google/common/reflect/TypesTest.java

      }
    
      private static class WithWildcardType {
    
        @SuppressWarnings("unused")
        void withoutBound(List<?> list) {}
    
        @SuppressWarnings("unused")
        void withObjectBound(List<? extends Object> list) {}
    
        @SuppressWarnings("unused")
        void withUpperBound(List<? extends int[][]> list) {}
    
        @SuppressWarnings("unused")
        void withLowerBound(List<? super String[][]> list) {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/reflect/TypesTest.java

      }
    
      private static class WithWildcardType {
    
        @SuppressWarnings("unused")
        void withoutBound(List<?> list) {}
    
        @SuppressWarnings("unused")
        void withObjectBound(List<? extends Object> list) {}
    
        @SuppressWarnings("unused")
        void withUpperBound(List<? extends int[][]> list) {}
    
        @SuppressWarnings("unused")
        void withLowerBound(List<? super String[][]> list) {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/kubelet/logs/container_log_manager.go

    // filterUnusedLogs splits logs into 2 groups, the 1st group is in used logs,
    // the second group is unused logs.
    func filterUnusedLogs(logs []string) (inuse []string, unused []string) {
    	for _, l := range logs {
    		if isInUse(l, logs) {
    			inuse = append(inuse, l)
    		} else {
    			unused = append(unused, l)
    		}
    	}
    	return inuse, unused
    }
    
    // isInUse checks whether a container log file is still inuse.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. pkg/kube/krt/singleton.go

    	}
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (d *static[T]) dump() {
    	log.Errorf(">>> static[%v]: %+v<<<", ptr.TypeName[T](), d.val.Load())
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (d *static[T]) augment(a any) any {
    	// not supported in this collection type
    	return a
    }
    
    // nolint: unused // (not true, its to implement an interface)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    void run() {
                        println "this.value = " + value.getOrNull()
                        println "this.unused = " + unused.getOrNull()
                        println "this.bean.value = " + bean.value.getOrNull()
                        println "this.bean.unused = " + bean.unused.getOrNull()
                        println "this.unusedBean.value = " + unusedBean.value.getOrNull()
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_list_retract.txt

    # 'go list -m -retracted mod@version' shows retractions.
    go list -m -retracted example.com/retract@v1.0.0-unused
    stdout '^example.com/retract v1.0.0-unused \(retracted\)$'
    go list -m -retracted -f '{{with .Retracted}}retracted{{end}}' example.com/retract@v1.0.0-unused
    stdout retracted
    
    # 'go list -m mod@latest' selects a previous release version, not self-retracted latest.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 13 00:19:50 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java

          public boolean noAddOverflow(int a, int b) {
            try {
              int unused = IntMath.checkedAdd(a, b);
              return true;
            } catch (ArithmeticException e) {
              return false;
            }
          }
    
          @Override
          public boolean noAddOverflow(long a, long b) {
            try {
              long unused = LongMath.checkedAdd(a, b);
              return true;
            } catch (ArithmeticException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 6.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue19078.go

    // when there is a defer.
    package main
    
    import "unsafe"
    
    func main() {
    	// Construct an invalid pointer.  We do this by
    	// making a pointer which points to the unused space
    	// between the last 48-byte object in a span and the
    	// end of the span (there are 32 unused bytes there).
    	p := new([48]byte)              // make a 48-byte object
    	sink = &p                       // escape it, so it allocates for real
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 19:39:15 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  9. src/text/template/link_test.go

    )
    
    // Issue 36021: verify that text/template doesn't prevent the linker from removing
    // unused methods.
    func TestLinkerGC(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    	const prog = `package main
    
    import (
    	_ "text/template"
    )
    
    type T struct{}
    
    func (t *T) Unused() { println("THIS SHOULD BE ELIMINATED") }
    func (t *T) Used() {}
    
    var sink *T
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 12 21:58:25 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/MonolithicNativeProjectGeneratorTask.groovy

                generateWithTemplate(destDir, "modules/${testProject.name}/src/unused${sourceIdx}.${sourceLang}", "native-monolithic/src/unused.c", fileArgs)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.8K bytes
    - Viewed (0)
Back to top