Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for negation_0 (0.2 sec)

  1. tensorflow/c/c_api_function_test.cc

      TF_Operation* neg = Neg(feed, func_graph_, s_, "neg");
      Define(-1, {}, {feed}, {neg}, {"negation"});
    
      // Use, run, and verify
      TF_Operation* func_feed = Placeholder(host_graph_, s_);
      TF_Operation* func_op = Use({func_feed});
      Run({{func_feed, Int32Tensor(3)}}, func_op, -3);
      VerifyFDef({"neg"}, {{"negation_0", DT_INT32}}, {{"negation", DT_INT32}},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/specs/SpecsTest.groovy

            !spec.isSatisfiedBy("")
            spec.isSatisfiedBy([1,2,3])
        }
    
        def "negation of all is none"() {
            expect:
            Specs.negate(Specs.satisfyAll()) == Specs.satisfyNone()
        }
    
        def "negation of none is all"() {
            expect:
            Specs.negate(Specs.satisfyNone()) == Specs.satisfyAll()
        }
    
        def "negation of spec is !spec"() {
            def spec = Stub(Spec)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/AnalysisStatementFilter.kt

        is AnalysisStatementFilter.NamedCallFilter -> statement is FunctionCall && statement.name == callName
        is AnalysisStatementFilter.NotFilter -> !negationOf.shouldAnalyzeStatement(statement, scopes)
        is AnalysisStatementFilter.TopLevelElementFilter -> scopes.last().receiver is ObjectOrigin.TopLevelReceiver
    }
    
    
    internal
    object AnalysisStatementFiltersImplementations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/go/build/constraint/expr.go

    					clause += ","
    				}
    				clause += lit.String()
    			}
    			line += " " + clause
    		}
    		lines = append(lines, line)
    	}
    
    	return lines, nil
    }
    
    // pushNot applies DeMorgan's law to push negations down the expression,
    // so that only tags are negated in the result.
    // (It applies the rewrites !(X && Y) => (!X || !Y) and !(X || Y) => (!X && !Y).)
    func pushNot(x Expr, not bool) Expr {
    	switch x := x.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/pre_calibration_test.cc

    }
    
    // Matches an operation that has a StringAttr whose name is `name` and value
    // matches `value_matcher`.
    MATCHER_P2(HasStringAttr, name, value_matcher,
               absl::StrCat(negation ? "doesn't have" : "has",
                            "string attribute: ", name, ", with desirable value")) {
      auto non_const_arg = const_cast<std::remove_const_t<decltype(arg)>>(arg);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 21:41:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/AnalysisStatementFilter.kt

            val right: AnalysisStatementFilter
    
            interface AndFilter : CompositionFilter
            interface OrFilter : CompositionFilter
        }
    
        interface NotFilter : AnalysisStatementFilter {
            val negationOf: AnalysisStatementFilter
        }
    
        interface ConfiguringCallFilter : AnalysisStatementFilter
        interface TopLevelElementFilter : AnalysisStatementFilter
        interface NamedCallFilter : AnalysisStatementFilter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/SrcDistributionIntegrationSpec.groovy

            contentsDir.eachFileRecurse {
                if (it.absolutePath.endsWith(generatedSourceName)) {
                    foundGeneratedSources = true
                }
            }
    
            then:
            // TODO: remove negation when fixed
            !foundGeneratedSources
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/internal/zstd/xxhash.go

    func (xh *xxhash64) reset() {
    	xh.len = 0
    
    	// Separate addition for awkward constant overflow.
    	xh.v[0] = xxhPrime64c1
    	xh.v[0] += xxhPrime64c2
    
    	xh.v[1] = xxhPrime64c2
    	xh.v[2] = 0
    
    	// Separate negation for awkward constant overflow.
    	xh.v[3] = xxhPrime64c1
    	xh.v[3] = -xh.v[3]
    
    	for i := range xh.buf {
    		xh.buf[i] = 0
    	}
    	xh.cnt = 0
    }
    
    // update adds a buffer to the has.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    	NonGreedy                       // make repetition operators default to non-greedy
    	PerlX                           // allow Perl extensions
    	UnicodeGroups                   // allow \p{Han}, \P{Han} for Unicode group and negation
    	WasDollar                       // regexp OpEndText was $, not \z
    	Simple                          // regexp contains no counted repetition
    
    	MatchNL = ClassNL | DotNL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/log/slog/level.go

    // Since a larger level means a more severe event, a logger that accepts events
    // with smaller (or more negative) level means a more verbose logger. Logger
    // verbosity is thus the negation of event severity, and the default verbosity
    // of 0 accepts all events at least as severe as INFO.
    //
    // Third, we wanted some room between levels to accommodate schemes with named
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:34:43 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top