Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for discarded (0.12 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

              return 0;
            }
    
            @Override
            public Iterator<Object> iterator() {
              return ImmutableSet.of().iterator();
            }
          };
    
      /** Queue that discards all elements. */
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <E> Queue<E> discardingQueue() {
        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

              return 0;
            }
    
            @Override
            public Iterator<Object> iterator() {
              return ImmutableSet.of().iterator();
            }
          };
    
      /** Queue that discards all elements. */
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <E> Queue<E> discardingQueue() {
        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    	}
    }
    
    func TestGob(t *testing.T) {
    	// Test that gob does not reject Certificate.
    	// See go.dev/issue/65633.
    	cert := new(Certificate)
    	err := gob.NewEncoder(io.Discard).Encode(cert)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestRejectCriticalAKI(t *testing.T) {
    	template := Certificate{
    		SerialNumber: big.NewInt(1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // is named after the first source file.
    // 'go build ed.go rx.go' writes 'ed' or 'ed.exe'.
    //
    // When compiling multiple packages or a single non-main package,
    // build compiles the packages but discards the resulting object,
    // serving only as a check that the packages can be built.
    //
    // The -o flag forces build to write the resulting executable or object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	// defer inline frame expansion until the profile is reported.
    	// The "maxSkip" term is for frame pointer unwinding, where we
    	// want to end up with debug.profstackdebth frames but will discard
    	// some "physical" frames to account for skipping.
    	return make([]uintptr, 1+maxSkip+debug.profstackdepth)
    }
    
    // makeProfStack returns a buffer large enough to hold a maximum-sized stack
    // trace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top