Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 380 for Ufour (0.1 sec)

  1. maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml

                  <stringParams>
                    <stringParam>one</stringParam>
                    <stringParam>two</stringParam>
                    <stringParam>three</stringParam>
                    <stringParam>four</stringParam>
                  </stringParams>
                  <propertiesParam>
                    <property>
                      <name>key1</name>
                      <value>value1</value>
                    </property>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/UnmodifiableRowSortedTableColumnTest.java

        RowSortedTable<String, Character, Integer> table = TreeBasedTable.create();
        table.put("one", 'a', 1);
        table.put("two", 'a', 2);
        table.put("three", 'a', 3);
        table.put("four", 'b', 4);
        return Tables.unmodifiableRowSortedTable(table).column('a');
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/UnmodifiableTableColumnTest.java

        Table<String, Character, Integer> table = HashBasedTable.create();
        table.put("one", 'a', 1);
        table.put("two", 'a', 2);
        table.put("three", 'a', 3);
        table.put("four", 'b', 4);
        return Tables.unmodifiableTable(table).column('a');
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-exec-config-order/w-plugin-mgmt/pom.xml

                  <stringParams>
                    <stringParam>one</stringParam>
                    <stringParam>two</stringParam>
                    <stringParam>three</stringParam>
                    <stringParam>four</stringParam>
                  </stringParams>
                  <propertiesParam>
                    <property>
                      <name>key1</name>
                      <value>value1</value>
                    </property>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/whitelist.go

    	"image/color.YCbCr":   true,
    	"image.Point":         true,
    	"image.Rectangle":     true,
    	"image.Uniform":       true,
    
    	"unicode.Range16": true,
    	"unicode.Range32": true,
    
    	// These four structs are used in generated test main files,
    	// but the generator can be trusted.
    	"testing.InternalBenchmark":  true,
    	"testing.InternalExample":    true,
    	"testing.InternalTest":       true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 00:08:36 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. src/internal/chacha8rand/chacha8_generic.go

    // position 0, 1, 2, and 3 respectively, and an increasing counter
    // starting at zero is subtracted from each word at position 12. Then,
    // this stream is permuted such that for each sequence of four blocks,
    // first we output the first four bytes of each block, then the next four
    // bytes of each block, and so on. Finally, the last 32 bytes of output
    // are used as the input of the next iteration, and the remaining 992
    // bytes are the RNG output.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/TablesTransformValuesRowTest.java

        Table<Character, String, Integer> table = HashBasedTable.create();
        table.put('a', "one", 2);
        table.put('a', "two", 4);
        table.put('a', "three", 6);
        table.put('b', "four", 8);
        return Tables.transformValues(table, TableCollectionTest.DIVIDE_BY_2).row('a');
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/ArrayTableColumnTest.java

        throw new UnsupportedOperationException();
      }
    
      @Override
      Table<String, Character, Integer> makeTable() {
        return ArrayTable.create(
            Arrays.asList("one", "two", "three", "four"), Arrays.asList('a', 'b', 'c'));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:53:42 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/ArrayTableRowTest.java

      }
    
      @Override
      protected Table<Character, String, Integer> makeTable() {
        return ArrayTable.create(
            Arrays.asList('a', 'b', 'c'), Arrays.asList("one", "two", "three", "four"));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:53:42 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. pilot/pkg/security/trustdomain/util.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package trustdomain
    
    import "strings"
    
    // stringMatch checks if a string is in a list, it supports four types of string matches:
    // 1. Exact match.
    // 2. Wild character match. "*" matches any string.
    // 3. Prefix match. For example, "book*" matches "bookstore", "bookshop", etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 13 15:27:59 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top