Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for simply (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      int dim_size = rt.getDimSize(0);
    
      // Worklist to direct partial evaluation.
      SmallVector<ValuePort, 4> worklist;
    
      // Simple evaluator that attempts to partially evaluate the input value even
      // if unable to evaluate the complete output. Below follows a simple stack
      // based evaluation where it queries what operands/part of operands need to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	defer klog.V(4).InfoS("SyncTerminatedPod exit", "pod", klog.KObj(pod), "podUID", pod.UID)
    
    	// generate the final status of the pod
    	// TODO: should we simply fold this into TerminatePod? that would give a single pod update
    	apiPodStatus := kl.generateAPIPodStatus(pod, podStatus, true)
    
    	kl.statusManager.SetPodStatus(pod, apiPodStatus)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she would keep, through all her riper years, the simple and
    loving heart of her childhood:  and how she would gather about
    her other little children, and make THEIR eyes bright and eager
    with many a strange tale, perhaps even with the dream of
    Wonderland of long ago:  and how she would feel with all their
    simple sorrows, and find a pleasure in all their simple joys,
    remembering her own child-life, and the happy summer days.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	handler := handle(map[string]rest.Storage{
    		"simple":     &SimpleRESTStorage{},
    		"simple/sub": storage,
    	})
    	server := httptest.NewServer(handler)
    	defer server.Close()
    	client := http.Client{}
    
    	simple := &genericapitesting.Simple{Other: "foo"}
    	data, err := runtime.Encode(testCodec, simple)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she would keep, through all her riper years, the simple and
    loving heart of her childhood:  and how she would gather about
    her other little children, and make THEIR eyes bright and eager
    with many a strange tale, perhaps even with the dream of
    Wonderland of long ago:  and how she would feel with all their
    simple sorrows, and find a pleasure in all their simple joys,
    remembering her own child-life, and the happy summer days.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            failure.assertHasCause("Could not download test-impl-1.3.jar (test:test:1.3)")
    
            and:
            outputContains("Transforming test-api-1.3.jar to test-api-1.3.jar.txt")
            outputContains("Transforming test-impl2-1.3.jar to test-impl2-1.3.jar.txt")
            outputContains("Transforming test-2-0.1.jar to test-2-0.1.jar.txt")
    
            when:
            m1.getArtifact(name: 'test-impl').expectGetBroken()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // dimension == 1) whereas `tfl.fully_connected` accepts an `[o, i]` format.
    // If there is already a [i, o] -> [o, i] `stablehlo.transpose` in between the
    // constant and `rhs_op`, simply create an equivalent `tfl.qconst` from the
    // `stablehlo.constant` because it already suffices the desired format.
    //
    // It should be guaranteed that `rhs_op` is either:
    // 1. `stablehlo.constant`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // unique in the TF function library `flib_` and unique among the name strings
    // generated by the class object during its lifetime.
    //
    // In theory, this class is not necessary because we should simply take
    // the TF function name and use it as MLIR function name. However, for some
    // unknown reasons (callout for investigation in b/142268695), keeping the
    // function names unchanged in an MLIR roundtrip causes test failures.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	// Copy return values.
    	//
    	// This is somewhat simpler because both ABIs have an identical
    	// return value ABI (the types are identical). As a result, register
    	// results can simply be copied over. Stack-allocated values are laid
    	// out the same, but are at different offsets from the start of the frame
    	// Ignore any changes to args.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	// Because the world is stopped or allglock is held, allgadd
    	// cannot happen concurrently with this. allgs grows
    	// monotonically and existing entries never change, so we can
    	// simply return a copy of the slice header. For added safety,
    	// we trim everything past len because that can still change.
    	return allgs[:len(allgs):len(allgs)]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top