Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 405 for sizing (0.6 sec)

  1. src/main/webapp/css/bootstrap.min.css.map

    https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n  outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n  box-sizing: content-box; // 1\n  height: 0; // 1\n  overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Lists.java

      private static final class StringAsImmutableList extends ImmutableList<Character> {
    
        private final String string;
    
        StringAsImmutableList(String string) {
          this.string = string;
        }
    
        @Override
        public int indexOf(@CheckForNull Object object) {
          return (object instanceof Character) ? string.indexOf((Character) object) : -1;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Lists.java

      private static final class StringAsImmutableList extends ImmutableList<Character> {
    
        private final String string;
    
        StringAsImmutableList(String string) {
          this.string = string;
        }
    
        @Override
        public int indexOf(@CheckForNull Object object) {
          return (object instanceof Character) ? string.indexOf((Character) object) : -1;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

            }
          }
        }
      }
    
      /**
       * Returns a string representation for this CacheBuilder instance. The exact form of the returned
       * string is not specified.
       */
      @Override
      public String toString() {
        MoreObjects.ToStringHelper s = MoreObjects.toStringHelper(this);
        if (initialCapacity != UNSET_INT) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/CacheBuilder.java

            }
          }
        }
      }
    
      /**
       * Returns a string representation for this CacheBuilder instance. The exact form of the returned
       * string is not specified.
       */
      @Override
      public String toString() {
        MoreObjects.ToStringHelper s = MoreObjects.toStringHelper(this);
        if (initialCapacity != UNSET_INT) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	NegotiatedProtocol string
    
    	// NegotiatedProtocolIsMutual used to indicate a mutual NPN negotiation.
    	//
    	// Deprecated: this value is always true.
    	NegotiatedProtocolIsMutual bool
    
    	// ServerName is the value of the Server Name Indication extension sent by
    	// the client. It's available both on the server and on the client side.
    	ServerName string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    	someRS := newReplicaSet(1, map[string]string{"foo": "bar"})
    	someRS.Name = "rs1"
    	relatedRS := newReplicaSet(1, map[string]string{"foo": "baz"})
    	relatedRS.Name = "rs2"
    	unrelatedRS := newReplicaSet(1, map[string]string{"foo": "quux"})
    	unrelatedRS.Name = "rs3"
    	unrelatedRS.ObjectMeta.OwnerReferences[0].UID = "456"
    	pendingDeletionRS := newReplicaSet(1, map[string]string{"foo": "xyzzy"})
    	pendingDeletionRS.Name = "rs4"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    func newPodNominator(podLister listersv1.PodLister) *nominator {
    	return &nominator{
    		podLister:          podLister,
    		nominatedPods:      make(map[string][]*framework.PodInfo),
    		nominatedPodToNode: make(map[types.UID]string),
    	}
    }
    
    func podInfoKeyFunc(obj interface{}) (string, error) {
    	return cache.MetaNamespaceKeyFunc(obj.(*framework.QueuedPodInfo).Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. test/ken/string.out

    Ian Lance Taylor <******@****.***> 1326931944 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 00:12:24 UTC 2012
    - 49 bytes
    - Viewed (0)
  10. src/runtime/string.go

    		b = b[len(x):]
    	}
    	return s
    }
    
    func concatstring2(buf *tmpBuf, a0, a1 string) string {
    	return concatstrings(buf, []string{a0, a1})
    }
    
    func concatstring3(buf *tmpBuf, a0, a1, a2 string) string {
    	return concatstrings(buf, []string{a0, a1, a2})
    }
    
    func concatstring4(buf *tmpBuf, a0, a1, a2, a3 string) string {
    	return concatstrings(buf, []string{a0, a1, a2, a3})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top