Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for raws (0.18 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        @SuppressWarnings("rawtypes") // Trying to test raw class
        TypeToken<List> tokL = new TypeToken<List>() {};
        assertTrue(tokL.isSupertypeOf(StringList.class));
        assertTrue(tokL.isSupertypeOf(StringList.class.getGenericInterfaces()[0]));
    
        @SuppressWarnings("rawtypes") // Trying to test raw class
        TypeToken<Second> tokS = new TypeToken<Second>() {};
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	}
    	if table.ResourceVersion != "11" || table.Continue != "continuetoken" {
    		t.Errorf("printer lost list meta: %#v", table.ListMeta)
    	}
    	if len(table.Rows) != len(items) {
    		t.Errorf("unexpected number of rows: %v", len(table.Rows))
    	}
    	columns := table.ColumnDefinitions
    	if len(columns) == 0 {
    		t.Fatalf("unexpected number of columns: %v\n%#v", len(columns), columns)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        }
      }
    
      // This function rewrites the original op into a series of slice and concat op
      // to produce the same result. It first slices the first `$index` rows. Then
      // expands the dimension of the `$item`, followed by another slice of the
      // remaining rows starting from `$index` + 1. Lastly it concatenates the
      // three parts together.
      // On a high level, it's doing something like:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/validation/validation_test.go

    							AverageUtilization: utilpointer.Int32(70),
    							AverageValue:       resource.NewMilliQuantity(300, resource.DecimalSI),
    						},
    					},
    				}},
    			},
    		},
    		msg: "may not set both a target raw value and a target utilization",
    	}, {
    		horizontalPodAutoscaler: autoscaling.HorizontalPodAutoscaler{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "myautoscaler",
    				Namespace: metav1.NamespaceDefault,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. src/encoding/json/decode_test.go

    	}
    	if nulls.PStruct != nil {
    		t.Errorf("Unmarshal of null did not clear nulls.PStruct")
    	}
    
    	if string(nulls.Raw) != "null" {
    		t.Errorf("Unmarshal of RawMessage null did not record null: %v", string(nulls.Raw))
    	}
    	if nulls.Time.String() != before {
    		t.Errorf("Unmarshal of time.Time null set time to %v", nulls.Time.String())
    	}
    	if nulls.BigInt.String() != "123" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	border-right-width: 0;
    }
    
    table.grid-rows th.tableblock,
    table.grid-rows td.tableblock {
    	border-width: 0 0 1px 0;
    }
    
    table.grid-all tbody>tr:last-child>th.tableblock,
    table.grid-all tbody>tr:last-child>td.tableblock,
    table.grid-all thead:last-child>tr>th.tableblock,
    table.grid-rows tbody>tr:last-child>th.tableblock,
    table.grid-rows tbody>tr:last-child>td.tableblock,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (S(LD|RD|RAD|LW|RW|RAW) x (AND (MOVDconst [c]) y))
      => (S(LD|RD|RAD|LW|RW|RAW) x (ANDWconst <typ.UInt32> [int32(c&63)] y))
    (S(LD|RD|RAD|LW|RW|RAW) x (ANDWconst [c] y)) && c&63 == 63
      => (S(LD|RD|RAD|LW|RW|RAW) x y)
    (SLD  x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SLD  x y)
    (SRD  x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SRD  x y)
    (SRAD x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SRAD x y)
    (SLW  x (MOV(W|H|B|WZ|HZ|BZ)reg y)) => (SLW  x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. .bazelrc

    #     cuda_clang    Build with CUDA Clang support.
    #     rocm:         Build with AMD GPU support (rocm)
    #     mkl:          Enable full mkl support.
    #     tensorrt:     Enable Tensorrt support.
    #     noaws:        Disable AWS S3 storage support
    #     nogcp:        Disable GCS support.
    #     nohdfs:       Disable hadoop hdfs support.
    #     nonccl:       Disable nccl support.
    #
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    	os.Exit(m.Run())
    }
    
    // concurrency level for certain parallel tests.
    const testConcurrencyLevel = 10
    
    const iso8601TimeFormat = "2006-01-02T15:04:05.000Z"
    
    // Excerpts from @lsegal - https://github.com/aws/aws-sdk-js/issues/659#issuecomment-120477258
    //
    //	User-Agent:
    //
    //	    This is ignored from signing because signing this causes problems with generating pre-signed URLs
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"columnDefinitions": "columnDefinitions describes each column in the returned items array. The number of cells per row will always match the number of column definitions.",
    	"rows":              "rows is the list of items in the table.",
    }
    
    func (Table) SwaggerDoc() map[string]string {
    	return map_Table
    }
    
    var map_TableColumnDefinition = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
Back to top