Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 806 for sounds (0.19 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/mlir_pass_instrumentation_test.cc

        func.func @main(%arg0: tensor<?xi32, #mhlo.type_extensions<bounds = [1]>>) -> tensor<?xi32, #mhlo.type_extensions<bounds = [1]>> {
          %0 = "tf.Identity"(%arg0) : (tensor<?xi32, #mhlo.type_extensions<bounds = [1]>>) -> tensor<?xi32, #mhlo.type_extensions<bounds = [1]>>
          func.return %0 : tensor<?xi32, #mhlo.type_extensions<bounds = [1]>>
        }
      })";
      SetPassThatChangedIdentity("");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 19 22:54:26 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/image/png/fuzz_test.go

    				continue
    			}
    			img1, err := Decode(&w)
    			if err != nil {
    				t.Errorf("failed to decode roundtripped image: %s", err)
    				continue
    			}
    			got := img1.Bounds()
    			want := img.Bounds()
    			if !got.Eq(want) {
    				t.Errorf("roundtripped image bounds have changed, got: %s, want: %s", got, want)
    			}
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 15:56:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/image/draw/draw_test.go

    				b := dst.Bounds()
    				// Draw the (src, mask, op) onto a copy of dst using a slow but obviously correct implementation.
    				golden := makeGolden(dst, b, src, src.Bounds().Min, nil, image.Point{}, op)
    				if !b.Eq(golden.Bounds()) {
    					t.Errorf("drawOverlap xoff=%d,yoff=%d: bounds %v versus %v", xoff, yoff, dst.Bounds(), golden.Bounds())
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. src/image/png/example_test.go

    	img, err := png.Decode(gopherPNG())
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	levels := []string{" ", "░", "▒", "▓", "█"}
    
    	for y := img.Bounds().Min.Y; y < img.Bounds().Max.Y; y++ {
    		for x := img.Bounds().Min.X; x < img.Bounds().Max.X; x++ {
    			c := color.GrayModel.Convert(img.At(x, y)).(color.Gray)
    			level := c.Y / 51 // 51 * 5 = 255
    			if level == 5 {
    				level--
    			}
    			fmt.Print(levels[level])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 19:47:04 UTC 2016
    - 3.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition_test.go

    			expectErr:            true,
    			expectedErrorMessage: `found no matching overload for '_==_' applied to '(int, string)'`,
    		},
    		{
    			name: "delayed eval error",
    			variables: []NamedExpressionAccessor{
    				&testVariable{
    					name:       "count",
    					expression: "object.subsets[114514].addresses.size()", // array index out of bound
    				},
    			},
    			attributes:           endpointCreateAttributes(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/model/internal/type/WildcardTypeWrapper.java

                    return "?";
                }
            }
    
            assert bounds.length > 0;
    
            boolean first = true;
            for (TypeWrapper bound : bounds) {
                if (!first) {
                    sb.append(" & ");
                }
    
                first = false;
                sb.append(bound.getRepresentation(full));
            }
    
            return sb.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/SipHashFunction.java

      // The number of compression rounds.
      private final int c;
      // The number of finalization rounds.
      private final int d;
      // Two 64-bit keys (represent a single 128-bit key).
      private final long k0;
      private final long k1;
    
      /**
       * @param c the number of compression rounds (must be positive)
       * @param d the number of finalization rounds (must be positive)
       * @param k0 the first half of the key
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  8. src/image/jpeg/fuzz_test.go

    				continue
    			}
    			img1, err := Decode(&w)
    			if err != nil {
    				t.Errorf("failed to decode roundtripped image: %s", err)
    				continue
    			}
    			got := img1.Bounds()
    			want := img.Bounds()
    			if !got.Eq(want) {
    				t.Errorf("roundtripped image bounds have changed, got: %s, want: %s", got, want)
    			}
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 15:56:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/cgocall.go

    	// that call returning and now the stack may have changed (perhaps the
    	// C thread is running a coroutine library). We need to update the
    	// stack bounds for this case.
    	//
    	// N.B. we need to update the stack bounds even if SP appears to
    	// already be in bounds. Our "bounds" may actually be estimated dummy
    	// bounds (below). The actual stack bounds could have shifted but still
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. pkg/monitoring/monitoring.go

    // data collected by the Metric will be collected and exported as a histogram, with the specified bounds.
    func NewDistribution(name, description string, bounds []float64, opts ...Options) Metric {
    	knownMetrics.register(MetricDefinition{
    		Name:        name,
    		Type:        "Distribution",
    		Description: description,
    		Bounds:      bounds,
    	})
    	o, dm := createOptions(name, description, opts...)
    	if dm != nil {
    		return dm
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top