Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for restriction (0.54 sec)

  1. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java

            List<Restriction> restrictions = range.getRestrictions();
            assertEquals(1, restrictions.size(), CHECK_NUM_RESTRICTIONS);
            Restriction restriction = restrictions.get(0);
            assertNull(restriction.getLowerBound(), CHECK_LOWER_BOUND);
            assertFalse(restriction.isLowerBoundInclusive(), CHECK_LOWER_BOUND_INCLUSIVE);
            assertEquals("1.0", restriction.getUpperBound().toString(), CHECK_UPPER_BOUND);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 44.3K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         */
        public VersionRange restrict(VersionRange restriction) {
            List<Restriction> r1 = this.restrictions;
            List<Restriction> r2 = restriction.restrictions;
            List<Restriction> restrictions;
    
            if (r1.isEmpty() || r2.isEmpty()) {
                restrictions = Collections.emptyList();
            } else {
                restrictions = Collections.unmodifiableList(intersection(r1, r2));
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeRangeSet.java

        private final Range<C> restriction;
    
        SubRangeSet(Range<C> restriction) {
          super(
              new SubRangeSetRangesByLowerBound<C>(
                  Range.<Cut<C>>all(), restriction, TreeRangeSet.this.rangesByLowerBound));
          this.restriction = restriction;
        }
    
        @Override
        public boolean encloses(Range<C> range) {
          if (!restriction.isEmpty() && restriction.encloses(range)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/TreeRangeSet.java

        private final Range<C> restriction;
    
        SubRangeSet(Range<C> restriction) {
          super(
              new SubRangeSetRangesByLowerBound<C>(
                  Range.<Cut<C>>all(), restriction, TreeRangeSet.this.rangesByLowerBound));
          this.restriction = restriction;
        }
    
        @Override
        public boolean encloses(Range<C> range) {
          if (!restriction.isEmpty() && restriction.encloses(range)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  5. cmd/import-boss/main.go

    */
    
    // import-boss enforces import restrictions in a given repository.
    package main
    
    import (
    	"flag"
    	"os"
    
    	"errors"
    	"fmt"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strings"
    	"time"
    
    	"github.com/spf13/pflag"
    	"golang.org/x/tools/go/packages"
    	"k8s.io/klog/v2"
    	"sigs.k8s.io/yaml"
    )
    
    const (
    	rulesFileName = ".import-restrictions"
    	goModFile     = "go.mod"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. tensorflow/c/ops.h

    //   "numbertype", "realnumbertype", "quantizedtype"
    //       (meaning "type" with a restriction on valid values)
    //   "{int32,int64}" or {realnumbertype,quantizedtype,string}"
    //       (meaning "type" with a restriction containing unions of value types)
    //   "{\"foo\", \"bar\n baz\"}", or "{'foo', 'bar\n baz'}"
    //       (meaning "string" with a restriction on valid values)
    //   "list(string)", ..., "list(tensor)", "list(numbertype)", ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "The specified network password is not correct.",
            "Logon failure: unknown user name or bad password.",
            "Logon failure: user account restriction.",
            "Logon failure: account logon time restriction violation.",
            "Logon failure: user not allowed to log on to this computer.",
            "Logon failure: the specified account password has expired.",
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtStatus.java

            "The specified user does not exist.", "The specified network password is not correct.", "Logon failure: unknown user name or bad password.",
            "Logon failure: user account restriction.", "Logon failure: account logon time restriction violation.",
            "Logon failure: user not allowed to log on to this computer.", "Logon failure: the specified account password has expired.",
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 10:09:29 UTC 2019
    - 11.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/compilability_check_util.h

        //
        // TODO(b/112837194): This restriction can be lifted with some work.
        bool allow_stack_ops = false;
    
        // Whether TensorArray operations are allowed.  We avoid auto-clustering
        // TensorArray operations in general because we do not support snapshotting
        // them.
        //
        // TODO(b/112837194): This restriction can be lifted with some work.
        bool allow_tensor_array_ops = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  10. LICENSE

    Copyright (C) 2016 Daniel Dreibrodt
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top