Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 826 for raws (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/tableconvertor/tableconvertor_test.go

    				},
    				tableOptions: nil,
    			},
    			want: &metav1.Table{
    				ColumnDefinitions: []metav1.TableColumnDefinition{{Name: "name", Type: "string"}},
    				Rows: []metav1.TableRow{
    					{
    						Cells: []interface{}{"blah"},
    						Object: runtime.RawExtension{
    							Object: &metav1beta1.PartialObjectMetadata{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/nettest/nettest_windows.go

    	// Users running Winsock applications that use raw sockets must be a member of
    	// the Administrators group on the local computer, otherwise raw socket calls
    	// will fail with an error code of WSAEACCES. On Windows Vista and later, access
    	// for raw sockets is enforced at socket creation. In earlier versions of Windows,
    	// access for raw sockets is enforced during other socket operations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 989 bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/RegularImmutableTable.java

           * columns in the first row, the columns in the second row, etc. If a column Comparator is
           * provided but a row Comparator isn't, cellSet() iterates across the rows in the first
           * column, the rows in the second column, etc.
           */
          Comparator<Cell<R, C, V>> comparator =
              (Cell<R, C, V> cell1, Cell<R, C, V> cell2) -> {
                int rowCompare =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RowSortedTable.java

    import java.util.Map;
    import java.util.Set;
    import java.util.SortedMap;
    import java.util.SortedSet;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Interface that extends {@code Table} and whose rows are sorted.
     *
     * <p>The {@link #rowKeySet} method returns a {@link SortedSet} and the {@link #rowMap} method
     * returns a {@link SortedMap}, instead of the {@link Set} and {@link Map} specified by the {@link
     * Table} interface.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RowSortedTable.java

    import java.util.Map;
    import java.util.Set;
    import java.util.SortedMap;
    import java.util.SortedSet;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Interface that extends {@code Table} and whose rows are sorted.
     *
     * <p>The {@link #rowKeySet} method returns a {@link SortedSet} and the {@link #rowMap} method
     * returns a {@link SortedMap}, instead of the {@link Set} and {@link Map} specified by the {@link
     * Table} interface.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. pkg/credentialprovider/plugins.go

    	}
    	klog.V(4).Infof("Registered credential provider %q", name)
    	providers[name] = provider
    }
    
    // NewDockerKeyring creates a DockerKeyring to use for resolving credentials,
    // which draws from the set of registered credential providers.
    func NewDockerKeyring() DockerKeyring {
    	keyring := &providersDockerKeyring{
    		Providers: make([]DockerConfigProvider, 0),
    	}
    
    	keys := reflect.ValueOf(providers).MapKeys()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 22:01:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn_test.go

    			requested: []string{"v1.raw", "v1.base64"},
    			error:     true,
    		}, {
    			supported: map[string]bool{"": binary, "raw": binary, "base64": base64},
    			requested: []string{"v1.raw", "raw"},
    			expected:  "raw",
    		},
    		{
    			supported: map[string]bool{"": binary, "v1.raw": binary, "v1.base64": base64, "v2.raw": binary, "v2.base64": base64},
    			requested: []string{"v1.raw"},
    			expected:  "v1.raw",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/logging/testdata/logging.txt

    active loggers:
      admin: warning
      aws: warning
      assert: warning
      backtrace: warning
      client: warning
      config: warning
      connection: warning
      dubbo: warning
      file: warning
      filter: warning
      forward_proxy: warning
      grpc: warning
      hc: warning
      health_checker: warning
      http: warning
      http2: warning
      hystrix: warning
      init: warning
      io: warning
      jwt: warning
      kafka: warning
      lua: warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 02 13:47:26 UTC 2019
    - 715 bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ConsoleLayoutCalculatorTest.groovy

        }
    
        def "lines should be half the console size for small consoles"() {
            given:
            1 * consoleMetaData.getRows() >> rows
    
            expect:
            consoleLayoutCalculator.calculateNumWorkersForConsoleDisplay(10) == lines
    
            where:
            rows | lines
            6    | 3
            5    | 2
            4    | 2
            3    | 1
            2    | 1
            1    | 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/console/ConsoleMetaData.java

         * @return The number of columns available in the console. If no information is available return 0.
         */
        int getCols();
    
        /**
         * <p>Returns the number of rows available in the console.</p>
         *
         * @return The height of the console (rows). If no information is available return 0.
         */
        int getRows();
    
        boolean isWrapStreams();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top