Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 322 for Negate (0.09 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

            scopesToCollect.addAll(scopesToResolve);
    
            DependencyFilter collectionFilter = new ScopeDependencyFilter(null, negate(scopesToCollect));
            DependencyFilter resolutionFilter = new ScopeDependencyFilter(null, negate(scopesToResolve));
            resolutionFilter = AndDependencyFilter.newInstance(collectionFilter, resolutionFilter);
            resolutionFilter =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/fe.go

    	v.l2 = (a.l2 + 0xFFFFFFFFFFFFE) - b.l2
    	v.l3 = (a.l3 + 0xFFFFFFFFFFFFE) - b.l3
    	v.l4 = (a.l4 + 0xFFFFFFFFFFFFE) - b.l4
    	return v.carryPropagate()
    }
    
    // Negate sets v = -a, and returns v.
    func (v *Element) Negate(a *Element) *Element {
    	return v.Subtract(feZero, a)
    }
    
    // Invert sets v = 1/z mod p, and returns v.
    //
    // If z == 0, Invert returns v = 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PatternMatcher.java

            return new And(PatternMatcher.this, other);
        }
    
        public PatternMatcher or(final PatternMatcher other) {
            return new Or(PatternMatcher.this, other);
        }
    
        public PatternMatcher negate() {
            return new PatternMatcher() {
                @Override
                public boolean test(String[] segments, boolean isFile) {
                    return !PatternMatcher.this.test(segments, isFile);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

        private final static CharMatcher INVALID_FIRST_CHAR_MATCHER = VALID_FIRST_CHAR_MATCHER.negate().precomputed();
        private final static CharMatcher INVALID_CHAR_MATCHER = CharMatcher.inRange('0', '9').or(VALID_FIRST_CHAR_MATCHER).or(CharMatcher.is('-')).negate().precomputed();
    
        public static final ModelPath ROOT;
        private static final Cache BY_PATH;
    
        static {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_cluster_util_test.cc

      Output variable =
          ops::Variable(s.WithOpName("variable"), PartialTensorShape{}, DT_FLOAT);
      Output read = ops::Identity(s.WithOpName("read_ref_var"), variable);
      Output neg = ops::Negate(s.WithOpName("negate_ref"), read);
      Output add = ops::Add(s.WithOpName("add_ref"), neg, neg);
    
      Output constant =
          ops::Const(s.WithOpName("constant_ref"), Input::Initializer(0.0));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessor.java

        private final Spec<SpecRuleAction<? super ComponentSelection>> withNoInputs = element -> element.getAction().getInputTypes().isEmpty();
        private final Spec<SpecRuleAction<? super ComponentSelection>> withInputs = Specs.negate(withNoInputs);
    
        void apply(ComponentSelectionInternal selection, Collection<SpecRuleAction<? super ComponentSelection>> specRuleActions, MetadataProvider metadataProvider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

                                      PartialTensorShape{}, DT_FLOAT);
      Output read = ops::Identity(root.WithOpName("read"), variable);
      Output neg = ops::Negate(root.WithOpName("negate"), read);
      Output identity = ops::Negate(root.WithOpName("identity"), neg);
      Output add = ops::Add(root.WithOpName("add"), identity, neg);
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/Specs.java

            }
    
            return new OrSpec<>(filtered);
        }
    
        /**
         * Returns a spec that selects everything that is not selected by the given spec.
         */
        public static <T> Spec<T> negate(Spec<? super T> spec) {
            if (spec == SATISFIES_ALL) {
                return satisfyNone();
            }
            if (spec == SATISFIES_NONE) {
                return satisfyAll();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSpecFactory.java

            setDefaultExcludesFromSettings(excludes.toArray(new String[0]));
        }
    
        public Spec<FileTreeElement> createSpec(PatternSet patternSet) {
            return Specs.intersect(createIncludeSpec(patternSet), Specs.negate(createExcludeSpec(patternSet)));
        }
    
        public Spec<FileTreeElement> createIncludeSpec(PatternSet patternSet) {
            Set<Spec<FileTreeElement>> includeSpecs = patternSet.getIncludeSpecsView();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/covdata/tool_test.go

    	}
    }
    
    func dumplines(lines []string) {
    	for i := range lines {
    		fmt.Fprintf(os.Stderr, "%s\n", lines[i])
    	}
    }
    
    type dumpCheck struct {
    	tag     string
    	re      *regexp.Regexp
    	negate  bool
    	nonzero bool
    	zero    bool
    }
    
    // runDumpChecks examines the output of "go tool covdata debugdump"
    // for a given output directory, looking for the presence or absence
    // of specific markers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top