Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Dummy3 (0.15 sec)

  1. cmd/object-handlers_test.go

    	// Indicating that all parts are uploaded and initiating CompleteMultipartUpload.
    	nilBucket := "dummy-bucket"
    	nilObject := "dummy-object"
    
    	nilReq, err := newTestSignedRequestV4(http.MethodPost, getCompleteMultipartUploadURL("", nilBucket, nilObject, "dummy-uploadID"),
    		0, nil, "", "", nil)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. src/reflect/value.go

    //go:noescape
    func unsafeslice(t *abi.Type, ptr unsafe.Pointer, len int)
    
    // Dummy annotation marking that the value x escapes,
    // for use in cases where the reflect code is so clever that
    // the compiler cannot follow.
    func escapes(x any) {
    	if dummy.b {
    		dummy.x = x
    	}
    }
    
    var dummy struct {
    	b bool
    	x any
    }
    
    // Dummy annotation marking that the content of value x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

          %one = arith.constant dense<1> : tensor<i32>
          %sub = "tf.Sub"(%barg1, %one) : (tensor<i32>, tensor<i32>) -> tensor<i32>
          %dummy0 = arith.constant dense<7> : tensor<i32>
          %dummy1 = arith.constant dense<3.0> : tensor<f32>
          "tf.Yield"(%add, %sub, %dummy0, %dummy1) : (tensor<*xf32>, tensor<i32>, tensor<i32>, tensor<f32>) -> ()
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    	var minReplicas int32 = 1
    	var cpuTarget int32 = 10
    
    	// generate resources (HPAs, Scales, Pods...)
    	for i := 0; i < hpaCount; i++ {
    		hpaName := fmt.Sprintf("dummy-hpa-%v", i)
    		deploymentName := fmt.Sprintf("dummy-target-%v", i)
    		labelSet := map[string]string{"name": deploymentName}
    		selector := labels.SelectorFromSet(labelSet).String()
    
    		// generate HPAs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    		if err != nil {
    			t.Fatalf("%s: Slurp error: %v", name, err)
    		}
    	}
    
    	// Few 100 responses, making sure we're not off-by-one.
    	for i := 1; i <= numReqs; i++ {
    		req, _ := NewRequest("POST", "http://dummy.tld/", strings.NewReader(reqBody(i)))
    		req.Header.Set("Request-Id", reqID(i))
    		testResponse(req, fmt.Sprintf("100, %d/%d", i, numReqs), 200)
    	}
    }
    
    // Issue 17739: the HTTP client must ignore any unknown 1xx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            /*output=*/TypeAttr::get(constant_op.getResult().getType()),
            /*value=*/constant_op.getValue());
      }
    }
    
    // Creates a new `tfl.qconst` op for the bias. The bias values are 0s, because
    // this bias a dummy bias (note that bias fusion is not considered for this
    // transformation). The quantization scale for the bias is input scale *
    // filter scale. `filter_const_op` is used to retrieve the filter scales and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    Creates a matcher that matches if examined object is null. Accepts a single dummy argument to facilitate type inference. For example: assertThat(cheese, is(nullValue(Cheese.class)) Parameters: type - dummy parameter used to infer the generic type of the returned matcher notNullValue public static <T> Matcher<T> notNullValue(java.lang.Class<T> type) A shortcut to the frequently used not(nullValue(X.class)). Accepts a single dummy argument to facilitate type inference.. For example: assertThat(cheese,...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    type two [2]uintptr
    
    // Difficult test for function call because of
    // implicit padding between arguments.
    func dummy(b byte, c int, d byte, e two, f byte, g float32, h byte) (i byte, j int, k byte, l two, m byte, n float32, o byte) {
    	return b, c, d, e, f, g, h
    }
    
    func TestFunc(t *testing.T) {
    	ret := ValueOf(dummy).Call([]Value{
    		ValueOf(byte(10)),
    		ValueOf(20),
    		ValueOf(byte(30)),
    		ValueOf(two{40, 50}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. cmd/admin-handlers.go

    				writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminProfilerNotEnabled), r.URL)
    				return
    			}
    			return
    		}
    	}
    }
    
    // dummyFileInfo represents a dummy representation of a profile data file
    // present only in memory, it helps to generate the zip stream.
    type dummyFileInfo struct {
    	name    string
    	size    int64
    	mode    os.FileMode
    	modTime time.Time
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        More precisely, for every minimal unexplainable control dependency path
        we emit op warnings for all involved ops. The pass does not report
        intermediate dummy ops for grouping control dependencies (Identity, NoOp),
        unless they are part of an unexplainable path between other ops.
        This pass is useful to understand control dependency conservatism for a
        given MLIR module.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top