Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for Liew (0.2 sec)

  1. android/guava/src/com/google/common/collect/Multimaps.java

       * @param multimap the multimap to be wrapped in a synchronized view
       * @return a synchronized view of the specified multimap
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          Multimap<K, V> synchronizedMultimap(Multimap<K, V> multimap) {
        return Synchronized.multimap(multimap, null);
      }
    
      /**
       * Returns an unmodifiable view of the specified multimap. Query operations on the returned
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
  2. migrator/migrator.go

    	return columnTypes, execErr
    }
    
    // CreateView create view from Query in gorm.ViewOption.
    // Query in gorm.ViewOption is a [subquery]
    //
    //	// CREATE VIEW `user_view` AS SELECT * FROM `users` WHERE age > 20
    //	q := DB.Model(&User{}).Where("age > ?", 20)
    //	DB.Debug().Migrator().CreateView("user_view", gorm.ViewOption{Query: q})
    //
    //	// CREATE OR REPLACE VIEW `users_view` AS SELECT * FROM `users` WITH CHECK OPTION
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Apr 26 07:15:49 GMT 2024
    - 29K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

      }
    
      /**
       * Returns an unmodifiable view of the specified set of entries. The {@link Entry#setValue}
       * operation throws an {@link UnsupportedOperationException}, as do any operations that would
       * modify the returned set.
       *
       * @param entrySet the entries for which to return an unmodifiable view
       * @return an unmodifiable view of the entries
       */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

      @Deprecated
      public static <E extends @Nullable Object> Set<E> newSetFromMap(
          Map<E, Boolean> map) {
        return Collections.newSetFromMap(map);
      }
    
      /**
       * An unmodifiable view of a set which may be backed by other sets; this view will change as the
       * backing sets do. Contains methods to copy the data into a new set which will then remain
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/upgrade/admin_upgrade.jsp

    			key="labels.upgrade_title_configuration" /></title>
    	<jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    	<div class="wrapper">
    		<jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
    		<jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
    			<jsp:param name="menuCategoryType" value="system" />
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multisets.java

       *
       * @param multiset the multiset for which an unmodifiable view is to be generated
       * @return an unmodifiable view of the multiset
       */
      public static <E extends @Nullable Object> Multiset<E> unmodifiableMultiset(
          Multiset<? extends E> multiset) {
        if (multiset instanceof UnmodifiableMultiset || multiset instanceof ImmutableMultiset) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterators.java

          iterator.next();
        }
        return i;
      }
    
      /**
       * Returns a view containing the first {@code limitSize} elements of {@code iterator}. If {@code
       * iterator} contains fewer than {@code limitSize} elements, the returned view contains all of its
       * elements. The returned iterator supports {@code remove()} if {@code iterator} does.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 51.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterables.java

                iterator.remove();
              }
            };
          }
        };
      }
    
      /**
       * Returns a view of {@code iterable} containing its first {@code limitSize} elements. If {@code
       * iterable} contains fewer than {@code limitSize} elements, the returned view contains all of its
       * elements. The returned iterable's iterator supports {@code remove()} if {@code iterable}'s
       * iterator does.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  9. manifests/charts/gateway/templates/deployment.yaml

                runAsGroup: 1337
                {{- end }}
                runAsNonRoot: true
              {{- end }}
              env:
              {{- with .Values.networkGateway }}
              - name: ISTIO_META_REQUESTED_NETWORK_VIEW
                value: "{{.}}"
              {{- end }}
              {{- range $key, $val := .Values.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              ports:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableList.java

          dst[offset + i] = get(i);
        }
        return offset + size;
      }
    
      /**
       * Returns a view of this immutable list in reverse order. For example, {@code ImmutableList.of(1,
       * 2, 3).reverse()} is equivalent to {@code ImmutableList.of(3, 2, 1)}.
       *
       * @return a view of this immutable list in reverse order
       * @since 7.0
       */
      public ImmutableList<E> reverse() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 27.1K bytes
    - Viewed (0)
Back to top