Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 198 for erator (0.13 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #else
    # define GTEST_ATTRIBUTE_UNUSED_
    #endif
    
    // A macro to disallow operator=
    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_ASSIGN_(type)\
      void operator=(type const &)
    
    // A macro to disallow copy constructor and operator=
    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #else
    # define GTEST_ATTRIBUTE_UNUSED_
    #endif
    
    // A macro to disallow operator=
    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_ASSIGN_(type)\
      void operator=(type const &)
    
    // A macro to disallow copy constructor and operator=
    // This should be used in the private: declarations for a class.
    #define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Using the `=` operator is the preferred way to call `set()` in the Kotlin DSL.
    
    .Kotlin lazy property assignment
    ====
    include::sample[dir="snippets/kotlinDsl/assignment/kotlin",files="build.gradle.kts[tags=assignment]"]
    ====
    <1> Set value with the `.set()` method
    <2> Set value with lazy property assignment using the `=` operator
    <3> The `=` operator can be used also for assigning lazy values
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    			if utyp.fields == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			if len(e.ElemList) == 0 {
    				break
    			}
    			// Convention for error messages on invalid struct literals:
    			// we mention the struct type only if it clarifies the error
    			// (e.g., a duplicate field error doesn't need the struct type).
    			fields := utyp.fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.set(toMutable(["abc"]))
            assertValueIs(["abc"])
        }
    
        def "can set value from various collection types"() {
            def iterable = Stub(Iterable)
            iterable.iterator() >> ["4", "5"].iterator()
    
            expect:
            property.set(["1", "2"])
            property.get() == toImmutable(["1", "2"])
    
            property.set(["2", "3"] as Set)
            property.get() == toImmutable(["2", "3"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/math_grad.cc

    Status TanhGrad(const Scope& scope, const Operation& op,
                    const std::vector<Output>& grad_inputs,
                    std::vector<Output>* grad_outputs) {
      // Use the built-in operator.
      // Note that the built-in operator does not return the conjugate of
      // the gradient.
      auto grad = grad_inputs[0];
      // Optimization to avoid calculating conj(y) until the gradient is
      // evaluated.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

         *   where multiple modules in the reactor have the same artifactId.
         * <p>
         * {@code -rf :artifactId} will pick up the first module which matches, but when multiple modules in the reactor
         *   have the same artifactId, effective failed module might be later in build reactor.
         * This means that developer will either have to type groupId or wait for build execution of all modules which
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    	}
    	// BTCQ
    	tp.mask ^= uintptr(1) << (i & (ptrBits - 1))
    	// LEAQ (XX)(XX*8)
    	return tp, tp.addr + uintptr(i)*goarch.PtrSize
    }
    
    // next advances the pointers iterator, returning the updated iterator and
    // the address of the next pointer.
    //
    // limit must be the same each time it is passed to next.
    //
    // nosplit because it is used during write barriers and must not be preempted.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/strategy_test.go

    										},
    										MatchExpressions: []metav1.LabelSelectorRequirement{
    											{
    												Key:      "country",
    												Operator: metav1.LabelSelectorOpIn,
    												Values:   []string{"Japan"},
    											},
    											{
    												Key:      "city",
    												Operator: metav1.LabelSelectorOpNotIn,
    												Values:   []string{"Kyoto"},
    											},
    										},
    									},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. src/index/suffixarray/sais2.go

    	// but at a significant speed cost. Instead, we just write these
    	// seven lines a few times in this source file. The copies below
    	// refer back to the pattern established by this original as the
    	// "LMS-substring iterator".
    	//
    	// In every scan through the text, c0, c1 are successive characters of text.
    	// In this backward scan, c0 == text[i] and c1 == text[i+1].
    	// By scanning backward, we can keep track of whether the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top