Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for salary (0.25 sec)

  1. tensorflow/c/c_api.h

    // into `dims`. `dims` must be an array large enough to hold `num_dims`
    // entries (e.g., the return value of TF_GraphGetTensorNumDims).
    //
    // If the number of dimensions in the shape is unknown or the shape is
    // a scalar, `dims` will remain untouched. Otherwise, each element of
    // `dims` will be set corresponding to the size of the dimension. An
    // unknown dimension is represented by `-1`.
    //
    // Returns an error into `status` if:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

               (TFL_L2NormalizationOp $x, TFL_AF_None),
               [(L2NormValidReduceIndex $sq_op, $axis)]>;
    
      // Below patterns for L2Normalize when there is an Add or Maximum
      // adding or clamping to a small constant scalar.
      def L2NormalizePattern2#FirstOp#SecondOp : Pat<
                        (FirstOp $x,
                         (SecondOp
                          (TFL_AddOp
                           (TFL_SumOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// for updates. During a rolling update, all pods from ordinal Replicas-1 to
    	// Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	// +optional
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    	// The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	XMC_SV     = 8  // 32-bit supervisor call descriptor
    	XMC_BS     = 9  // BSS class
    	XMC_DS     = 10 // Function descriptor
    	XMC_UC     = 11 // Unnamed FORTRAN common
    	XMC_TC0    = 15 // TOC anchor
    	XMC_TD     = 16 // Scalar data entry in the TOC
    	XMC_SV64   = 17 // 64-bit supervisor call descriptor
    	XMC_SV3264 = 18 // Supervisor call descriptor for both 32-bit and 64-bit
    	XMC_TL     = 20 // Read/Write thread-local data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// for updates. During a rolling update, all pods from ordinal Replicas-1 to
    	// Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	// +optional
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    	// The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  6. src/fmt/fmt_test.go

    	if got != expect {
    		t.Errorf("expected:\n\t%q\ngot:\n\t%q", expect, got)
    	}
    }
    
    var formatterFlagTests = []struct {
    	in  string
    	val any
    	out string
    }{
    	// scalar values with the (unused by fmt) 'a' verb.
    	{"%a", flagPrinter{}, "[%a]"},
    	{"%-a", flagPrinter{}, "[%-a]"},
    	{"%+a", flagPrinter{}, "[%+a]"},
    	{"%#a", flagPrinter{}, "[%#a]"},
    	{"% a", flagPrinter{}, "[% a]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        )
        assertInvalid(
          "http://[0.0.0.0:0:0:0:0:0:1]/",
          "Invalid URL host: \"[0.0.0.0:0:0:0:0:0:1]\"",
        )
      }
    
      @Test
      fun hostIpv6WithIncompleteIpv4Suffix() {
        // To Chrome & Safari these are well-formed; Firefox disagrees. (We're consistent with Firefox).
        assertInvalid(
          "http://[0:0:0:0:0:1:255.255.255.]/",
          "Invalid URL host: \"[0:0:0:0:0:1:255.255.255.]\"",
        )
        assertInvalid(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // instead relying on default initialization for the unspecified fields. In
    // particular, the owner_ field (a pthread_t) is not explicitly initialized.
    // This allows initialization to work whether pthread_t is a scalar or struct.
    // The flag -Wmissing-field-initializers must not be specified for this to work.
    # define GTEST_DEFINE_STATIC_MUTEX_(mutex) \
        ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // instead relying on default initialization for the unspecified fields. In
    // particular, the owner_ field (a pthread_t) is not explicitly initialized.
    // This allows initialization to work whether pthread_t is a scalar or struct.
    // The flag -Wmissing-field-initializers must not be specified for this to work.
    # define GTEST_DEFINE_STATIC_MUTEX_(mutex) \
        ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route_test.go

    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "header match",
    						Headers: map[string]*networking.StringMatch{
    							"cookie": {
    								MatchType: &networking.StringMatch_Exact{Exact: "canary"},
    							},
    						},
    					},
    				},
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "example2.default.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
Back to top