Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for REAL (0.08 sec)

  1. src/index/suffixarray/sais2.go

    	// See Nong, Zhang, and Chen, section 3.6 for a plausible explanation.
    	// In brief, the len(sa)/2 case would correspond to an SLSLSLSLSLSL pattern
    	// in the input, perfect alternation of larger and smaller input bytes.
    	// Real text doesn't do that. If each L-type index is randomly followed
    	// by either an L-type or S-type index, then half the substrings will
    	// be of the form SLS, but the other half will be longer. Of that half,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

      if (x_dtype == DT_COMPLEX64 || x_dtype == DT_COMPLEX128) {
        // real(x) < 0 is fine for the complex case
        auto log_x = Where3(scope, NotEqual(scope, x, zero), Log(scope, x),
                            ZerosLike(scope, x));
        auto gy_1 = Mul(scope, Mul(scope, grad, z), log_x);
        return BinaryGradCommon(scope, op, grad_outputs, gx_1, gy_1);
      } else {
        // There's no sensible real value to return if x < 0, so return 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        byConstraint("belongs to platform org:platform:1.1")
                        module('org:core:1.0')
                    }
                }
            }
        }
    
        /**
         * This test demonstrates a real world example, where some published versions are heterogeneous
         * or even inconsistent. For example, databind 2.9.4 depends on annotations 2.9.0, but we still
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputContains "Changing status for group:projectB:1.1 from 'should be overridden by rule' to 'release'"
    
            // second one comes from the rule executed on "real" metadata, after parsing the module
            outputContains "Changing status for group:projectB:1.1 from '${GradleMetadataResolveRunner.useIvy() ? 'integration' : 'release'}' to 'release'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    //
    // Currently assumes asymmetric per-tensor quantization for activations and
    // symmetric per-channel quantization for filters.
    //
    // This pattern represents the following derived equation, where:
    // * rn = real (expressed) value for tensor n
    // * qn = quantized value for tensor n
    // * sn = scale for tensor n
    // * zn = zero point for tensor n
    //
    // r3 = r1 * r2
    //    = s1 (q1 - z1) * s2 (q2 - z2)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	//
    	// If this is nil, it is populated with the real thing in init.
    	scavenge func(n uintptr) (uintptr, int64)
    
    	// shouldStop is a callback called in the work loop and provides a
    	// point that can force the scavenger to stop early, for example because
    	// the scavenge policy dictates too much has been scavenged already.
    	//
    	// If this is nil, it is populated with the real thing in init.
    	shouldStop func() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    }
                }
                upcomingNoLongerPendingConstraints = null;
            }
            // This part covers constraint that might be triggered in the future if the node they point gains a real edge
            if (cachedFilteredDependencyStates != null && !cachedFilteredDependencyStates.isEmpty()) {
                // We may have registered this node as pending if it had constraints.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	tg.grepStdout(`^bytes$`, "missing real bytes")
    	tg.grepStdout(`^bytes \[bytes.test\]$`, "missing test copy of bytes")
    	tg.grepStdout(`^testing \[bytes.test\]$`, "missing test copy of testing")
    	tg.grepStdoutNot(`^testing$`, "unexpected real copy of testing")
    
    	tg.run("list", "-test", "bytes")
    	tg.grepStdout(`^bytes.test$`, "missing test main")
    	tg.grepStdout(`^bytes$`, "missing real bytes")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    			assert.ElementsMatch(t, testcase.expectedEndpoints, slice.Endpoints)
    		})
    	}
    }
    
    // TestPodAddsBatching verifies that endpoint updates caused by pod addition are batched together.
    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    func TestPodAddsBatching(t *testing.T) {
    	t.Parallel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                getters.add(metadata);
                if (mainGetter == null) {
                    mainGetter = metadata;
                } else if (!mainGetter.shouldImplement() && metadata.shouldImplement()) {
                    // Prefer a real method over synthetic
                    mainGetter = metadata;
                } else if (mainGetter.getReturnType().equals(Boolean.TYPE) && !metadata.getReturnType().equals(Boolean.TYPE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
Back to top