Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for listEntry (0.22 sec)

  1. src/internal/platform/zosarch_test.go

    		if ee, ok := err.(*exec.ExitError); ok && len(ee.Stderr) > 0 {
    			t.Logf("stderr:\n%s", ee.Stderr)
    		}
    		t.Fatalf("%v: %v", cmd, err)
    	}
    
    	type listEntry struct {
    		GOOS, GOARCH string
    		CgoSupported bool
    		FirstClass   bool
    		Broken       bool
    	}
    	var entries []listEntry
    	if err := json.Unmarshal(out, &entries); err != nil {
    		t.Fatal(err)
    	}
    
    	tmplOut := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/pack/pack.go

    func (ar *Archive) scan(action func(*archive.Entry)) {
    	for i := range ar.a.Entries {
    		e := &ar.a.Entries[i]
    		action(e)
    	}
    }
    
    // listEntry prints to standard output a line describing the entry.
    func listEntry(e *archive.Entry, verbose bool) {
    	if verbose {
    		fmt.Fprintf(stdout, "%s\n", e.String())
    	} else {
    		fmt.Fprintf(stdout, "%s\n", e.Name)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/svn.go

    		"--recursive",
    		"--revision", rev,
    		"--", remotePath,
    	})
    	release()
    	if err != nil {
    		return err
    	}
    
    	type listEntry struct {
    		Kind string `xml:"kind,attr"`
    		Name string `xml:"name"`
    		Size int64  `xml:"size"`
    	}
    	var list struct {
    		Entries []listEntry `xml:"entry"`
    	}
    	if err := xml.Unmarshal(out, &list); err != nil {
    		return vcsErrorf("unexpected response from svn list --xml: %v\n%s", err, out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

        assertEquals(a, sortedMultiset.headMultiset(b.getElement(), OPEN).lastEntry());
        assertEquals(a, sortedMultiset.headMultiset(c.getElement(), OPEN).lastEntry());
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testFloor() {
        resetWithHole();
        assertEquals(a, sortedMultiset.headMultiset(a.getElement(), CLOSED).lastEntry());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ForwardingSortedMultiset.java

        return Multisets.immutableEntry(entry.getElement(), entry.getCount());
      }
    
      @Override
      @CheckForNull
      public Entry<E> lastEntry() {
        return delegate().lastEntry();
      }
    
      /**
       * A sensible definition of {@link #lastEntry()} in terms of {@code
       * descendingMultiset().entrySet().iterator()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

        }
      }
    
      @Override
      @CheckForNull
      public Entry<K, V> lastEntry() {
        return delegate().lastEntry();
      }
    
      /**
       * A sensible definition of {@link #lastEntry} in terms of the {@code iterator()} of the {@link
       * #entrySet} of {@link #descendingMap}. If you override {@code descendingMap}, you may wish to
       * override {@code lastEntry} to forward to this implementation.
       */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ForwardingNavigableMap.java

        }
      }
    
      @Override
      @CheckForNull
      public Entry<K, V> lastEntry() {
        return delegate().lastEntry();
      }
    
      /**
       * A sensible definition of {@link #lastEntry} in terms of the {@code iterator()} of the {@link
       * #entrySet} of {@link #descendingMap}. If you override {@code descendingMap}, you may wish to
       * override {@code lastEntry} to forward to this implementation.
       */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/AbstractNavigableMap.java

      @Override
      @ParametricNullness
      public K lastKey() {
        Entry<K, V> entry = lastEntry();
        if (entry == null) {
          throw new NoSuchElementException();
        } else {
          return entry.getKey();
        }
      }
    
      @Override
      @CheckForNull
      public Entry<K, V> lowerEntry(@ParametricNullness K key) {
        return headMap(key, false).lastEntry();
      }
    
      @Override
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java

          setSuccessor(pred, succ);
        }
        if (succ == ENDPOINT) {
          lastEntry = pred;
        } else {
          setPredecessor(succ, pred);
        }
      }
    
      @Override
      void insertEntry(int entryIndex, @ParametricNullness K key, int value, int hash) {
        super.insertEntry(entryIndex, key, value, hash);
        setSucceeds(lastEntry, entryIndex);
        setSucceeds(entryIndex, ENDPOINT);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

        }
    
        if (succ == ENDPOINT) {
          lastEntry = pred;
        } else {
          setPredecessor(succ, pred);
        }
      }
    
      @Override
      void insertEntry(
          int entryIndex, @ParametricNullness K key, @ParametricNullness V value, int hash, int mask) {
        super.insertEntry(entryIndex, key, value, hash, mask);
        setSucceeds(lastEntry, entryIndex);
        setSucceeds(entryIndex, ENDPOINT);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top