Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 72 for wbMove (0.47 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Leq16 x y) => (LessEqual (CMPW (SignExt16to32 x) (SignExt16to32 y)))
    (Leq32 x y) => (LessEqual (CMPW x y))
    (Leq64 x y) => (LessEqual (CMP x y))
    
    // Refer to the comments for op Less64F above.
    (Leq32F x y) => (LessEqualF (FCMPS x y))
    (Leq64F x y) => (LessEqualF (FCMPD x y))
    
    (Leq8U  x y) => (LessEqualU (CMPW (ZeroExt8to32  x) (ZeroExt8to32  y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    // opportunities should be obvious.
    // Note: don't include AddPtr here! In order to maintain the
    // invariant that pointers must stay within the pointed-to object,
    // we can't pull part of a pointer computation above the AddPtr.
    // See issue 37881.
    // Note: we don't need to handle any (x-C) cases because we already rewrite
    // (x-C) to (x+(-C)).
    
    // x + (C + z) -> C + (x + z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

           "description": "versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version)....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    positive match. The created matcher provides a special behaviour when examining Arrays, whereby it will match if both the operand and the examined object are arrays of the same length and contain items that are equal to each other (according to the above rules) in the same indexes. For example: assertThat("foo", equalTo("foo")); assertThat(new String[] {"foo", "bar"}, equalTo(new String[] {"foo", "bar"})); any public static <T> Matcher<T> any(java.lang.Class<T> type) Creates a matcher that matches...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      return absl::OkStatus();
    }
    
    Status CopyStackTraces(const Graph& from, Graph* to) {
      // Copy over the stack traces.
      // TODO(jpienaar): This really shouldn't be needed, copying the Graph above
      // and then needing these traversals is unfortunate.
      std::unordered_map<string, Node*> node_map = from.BuildNodeNameIndex();
      for (Node* node : to->nodes()) {
        if (const Node* old_node = node_map[node->name()]) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK: tf.Pow
        // CHECK-SAME: -> tensor<f32>
        %pow = "tf.Pow"(%mul, %cst1) : (tensor<f32>, tensor<f32>) -> tensor<*xf32>
        func.return %pow : tensor<*xf32>
      }
    
      // Same as above, but don't infer when the type is "less" static.
      // CHECK-LABEL: func @DontInferFromValueFolding
      func.func @DontInferFromValueFolding(%arg0 : tensor<*xf32>) -> tensor<f32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    ultProfileName: runtime/default # # The PSP controller would add corresponding annotations to the pod spec for each container. However, this happens before # the inject adds additional containers, so we must specify them explicitly here. With the above example, we could specify: # injectedAnnotations: # container.apparmor.security.beta.kubernetes.io/istio-init: runtime/default # container.apparmor.security.beta.kubernetes.io/istio-proxy: runtime/default injectedAnnotations: {} # This enables injection...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	0x0a, 0x00, 0x80, 0x00, 0x00,
    }
    
    // altLangISO3 holds an alphabetically sorted list of 3-letter language code alternatives
    // to 2-letter language codes that cannot be derived using the method described above.
    // Each 3-letter code is followed by its 1-byte langID.
    const altLangISO3 tag.Index = "---\x00cor\x00hbs\x01heb\x02kin\x03spa\x04yid\x05\xff\xff\xff\xff"
    
    // altLangIndex is used to convert indexes in altLangISO3 to langIDs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    					},
    				},
    			},
    			[]metav1.TableRow{{Cells: []interface{}{"test2", "1/2", "ContainerWaitingReason", "6", "<unknown>"}}},
    		},
    		{
    			// Test the same as the above but with Terminated state and the first container overwrites the rest
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test3"},
    				Spec:       api.PodSpec{Containers: make([]api.Container, 2)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    			expectedConditionReason: "JobResumed",
    			expectedReady:           ptr.To[int32](0),
    		},
    		"suspending a deleted job": {
    			// We would normally expect the active pods to be deleted (see a few test
    			// cases above), but since this job is being deleted, we don't expect
    			// anything changed here from before the job was suspended. The
    			// JobSuspended condition is also missing.
    			suspend:            true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top