Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 960 for Unused2 (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/functional/src/main/java/org/gradle/internal/ExtendedOptional.java

            return delegate.orElseGet(supplier);
        }
    
        @SuppressWarnings("unused")
        public T orElseThrow() {
            T value = delegate.orElse(null);
            if (value == null) {
                throw new NoSuchElementException("No value present");
            }
            return value;
        }
    
        @SuppressWarnings("unused")
        public <X extends Throwable> T orElseThrow(Supplier<? extends X> exceptionSupplier) throws X {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_loong64.s

    #include "go_asm.h"
    #include "textflag.h"
    
    TEXT ·Compare<ABIInternal>(SB),NOSPLIT,$0-56
    	// R4 = a_base
    	// R5 = a_len
    	// R6 = a_cap (unused)
    	// R7 = b_base (want in R6)
    	// R8 = b_len (want in R7)
    	// R9 = b_cap (unused)
    	MOVV	R7, R6
    	MOVV	R8, R7
    	JMP	cmpbody<>(SB)
    
    TEXT runtime·cmpstring<ABIInternal>(SB),NOSPLIT,$0-40
    	// R4 = a_base
    	// R5 = a_len
    	// R6 = b_base
    	// R7 = b_len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem_static.cc

    #include "tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    
    // Register the POSIX filesystems statically.
    // Return value will be unused
    bool StaticallyRegisterLocalFilesystems() {
      TF_FilesystemPluginInfo info;
      TF_InitPlugin(&info);
      Status status = filesystem_registration::RegisterFilesystemPluginImpl(&info);
      if (!status.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/IncrementalCompileMultiProjectTestFixture.groovy

            ":library:${language.compileTaskName}"
        }
    
        TestFile writeUnusedLibraryClass(CompiledLanguage language = CompiledLanguage.JAVA) {
            file("library/src/main/${language.name}/Unused.${language.name}") << 'public class Unused { }'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/WrappingScheduledExecutorServiceTest.java

        TestExecutor testExecutor = new TestExecutor(mock);
    
        @SuppressWarnings("unused") // https://errorprone.info/bugpattern/FutureReturnValueIgnored
        Future<?> possiblyIgnoredError = testExecutor.schedule(DO_NOTHING, 10, TimeUnit.MINUTES);
        mock.assertLastMethodCalled("scheduleRunnable", 10, TimeUnit.MINUTES);
    
        @SuppressWarnings("unused") // https://errorprone.info/bugpattern/FutureReturnValueIgnored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 7.6K bytes
    - Viewed (0)
Back to top