Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for expecting (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		list       bool
    		expected   runtime.Object
    		expectKind schema.GroupVersionKind
    		statusCode int
    	}{
    		{
    			accept:     "application/json;as=PartialObjectMetadata;v=v1alpha1;g=meta.k8s.io",
    			statusCode: http.StatusNotAcceptable,
    		},
    		{
    			accept:     "application/json;as=PartialObjectMetadata;v=v1alpha1;g=meta.k8s.io, application/json",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      }
      func.return
      // expected-remark@above {{ID: 13}}
      // expected-remark@above {{Sinks: {12}}}
    }
    
    // -----
    
    // Tests that the pass tracks control dependencies for side-effecting on unknown
    // resources.
    
    // CHECK-LABEL: func @unknown_side_effecting_op
    func.func @unknown_side_effecting_op(%arg0: tensor<32xf32>) -> () {
    // expected-remark@above {{ID: 14}}
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    		sendPod             *v1.Pod
    		registerPluginFuncs []tf.RegisterPluginFunc
    		expectErrorPod      *v1.Pod
    		expectForgetPod     *v1.Pod
    		expectAssumedPod    *v1.Pod
    		expectError         error
    		expectBind          *v1.Binding
    		eventReason         string
    		mockResult          mockScheduleResult
    	}{
    		{
    			name:       "error reserve pod",
    			sendPod:    podWithID("foo", ""),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    // If a P is currently executing code, this will bring the P to a GC
    // safe point and execute fn on that P. If the P is not executing code
    // (it is idle or in a syscall), this will call fn(p) directly while
    // preventing the P from exiting its state. This does not ensure that
    // fn will run on every CPU executing Go code, but it acts as a global
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    which takes a slice type
    and parameters specifying the length and optionally the capacity.
    A slice created with <code>make</code> always allocates a new, hidden array
    to which the returned slice value refers. That is, executing
    </p>
    
    <pre>
    make([]T, length, capacity)
    </pre>
    
    <p>
    produces the same slice as allocating an array and <a href="#Slice_expressions">slicing</a>
    it, so these two expressions are equivalent:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		}
    	}
    }
    
    // VetTool is the path to an alternate vet tool binary.
    // The caller is expected to set it (if needed) before executing any vet actions.
    var VetTool string
    
    // VetFlags are the default flags to pass to vet.
    // The caller is expected to set them before executing any vet actions.
    var VetFlags []string
    
    // VetExplicit records whether the vet flags were set explicitly on the command line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

            resp = new SmbComReadAndXResponse();
    
            connect0();
            dest.connect0();
    
                    /* At this point the maxBufferSize values are from the server
                     * exporting the volumes, not the one that we will actually
                     * end up performing IO with. If the server hosting the
                     * actual files has a smaller maxBufSize this could be
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

      // Tests extraction of a single outside compiled cluster inside a tf.IfRegion
      // op. Check that we mark the rewritten control-flow as stateful even though
      // the original control-flow is not (this is due to added side-effecting
      // communication ops).
    
      // CHECK-LABEL: func @outside_compiled_ops_inside_tf_if
      func.func @outside_compiled_ops_inside_tf_if(%arg0: tensor<2xi32>) -> tensor<2xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.5.md

    * The kube-apiserver [basic audit log](https://kubernetes.io/docs/admin/audit/) can be enabled in GCE by exporting the environment variable `ENABLE_APISERVER_BASIC_AUDIT=true` before running `cluster/kube-up.sh`. This will log to `/var/log/kube-apiserver-audit.log` and use the same `logrotate` settings as `/var/log/kube-apiserver.log`. ([#41211](https://gith...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      SameOperandsAndResultShape,
      SameOperandsAndResultElementType]> {
    
      let summary = "Atan2 operation";
      let description = [{
        The "atan2" operation computes the arctangent of y/x element-wise,
        respecting signs of the arguments.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, F64]>:$y,
        TFL_TensorOf<[F32, F64]>:$x
      );
    
      let results = (outs
        TFL_TensorOf<[F32, F64]>:$output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top