Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 194 for Percent (0.2 sec)

  1. src/cmd/cover/cfg_test.go

    	if inf, err := os.Open(mpath); err != nil {
    		t.Fatalf("meta-data file not created: %v", err)
    	} else {
    		inf.Close()
    	}
    
    	// Make sure it is digestible.
    	cdargs := []string{"tool", "covdata", "percent", "-i", mdir}
    	cmd := testenv.Command(t, testenv.GoToolPath(t), cdargs...)
    	run(cmd, t)
    }
    
    func testCoverNoTestsNoFuncs(t *testing.T) {
    	t.Parallel()
    	dir := tempDir(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    		}
    	}
    	return value, nil
    }
    
    // GetValueFromIntOrPercent was deprecated in favor of
    // GetScaledValueFromIntOrPercent. This method was treating all int as a numeric value and all
    // strings with or without a percent symbol as a percentage value.
    // Deprecated
    func GetValueFromIntOrPercent(intOrPercent *IntOrString, total int, roundUp bool) (int, error) {
    	if intOrPercent == nil {
    		return 0, errors.New("nil value for IntOrString")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/net/ipsock.go

    	}
    
    	port = hostport[i+1:]
    	return host, port, nil
    }
    
    func splitHostZone(s string) (host, zone string) {
    	// The IPv6 scoped addressing zone identifier starts after the
    	// last percent sign.
    	if i := bytealg.LastIndexByteString(s, '%'); i > 0 {
    		host, zone = s[:i], s[i+1:]
    	} else {
    		host = s
    	}
    	return
    }
    
    // JoinHostPort combines host and port into a network address of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. LICENSES/third_party/forked/shell2junit/LICENSE

    that entity. For the purposes of this definition, "control" means (i) the 
    power, direct or indirect, to cause the direction or management of such 
    entity, whether by contract or otherwise, or (ii) ownership of fifty percent 
    (50%) or more of the outstanding shares, or (iii) beneficial ownership of 
    such entity. 
    
    "You" (or "Your") shall mean an individual or Legal Entity exercising 
    permissions granted by this License. 
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 11:48:19 UTC 2021
    - 9.2K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmVendor.java

            JETBRAINS("jetbrains", "JetBrains"),
            MICROSOFT("microsoft", "Microsoft"),
            ORACLE("oracle", "Oracle"),
            SAP("sap se", "SAP SapMachine"),
            TENCENT("tencent", "Tencent"),
            UNKNOWN("gradle", "Unknown Vendor");
    
            private final String indicatorString;
            private final Pattern indicatorPattern;
            private final String displayName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 23:55:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

        public static final JvmVendorSpec SAP = matching(KnownJvmVendor.SAP);
    
        /**
         * A constant for using <a href="https://tencent.github.io/konajdk">Tencent Kona JDK</a> as the JVM vendor.
         *
         * @since 8.6
         */
        @Incubating
        public static final JvmVendorSpec TENCENT = matching(KnownJvmVendor.TENCENT);
    
        /**
         * Determines if the vendor passed as an argument matches this spec.
         * @param vendor the vendor to test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. .github/renovate.json

        },
        {
          "matchPackageNames": ["gradle"],
          "allowedVersions": "<8.0",
          "description": "Recent release, not compatible with pinned AGP and Kotlin versions yet. Wait for AGP 8?"
        },
        {
          "matchPackageNames": ["com.android.tools.build:gradle"],
          "allowedVersions": "<7.4",
          "description": "Recent release, no compatible Intellij stable release (2023.1)"
        }
      ]
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 18 14:22:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/PeekingIterator.java

      /**
       * {@inheritDoc}
       *
       * <p>Implementations may or may not support removal when a call to {@link #peek()} has occurred
       * since the most recent call to {@link #next()}.
       *
       * @throws IllegalStateException if there has been a call to {@link #peek()} since the most recent
       *     call to {@link #next()} and this implementation does not support this sequence of calls
       *     (optional)
       */
      @Override
      void remove();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ConcurrentGroupingQueue.kt

        /**
         * Returns the next group of elements after removing them from the queue.
         *
         * The group contains the most recently pushed element plus all
         * elements superseded by it ordered from most recent to least recent.
         */
        fun nextGroup(timeoutMillis: Long = pollTimeoutMillis): List<T> {
            lock.withLock {
                if (q.isNotEmpty()) {
                    return takeNextGroup()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. docs/bucket/lifecycle/README.md

    ```
    
    ### 3.2 Automatic removal of noncurrent versions keeping only most recent ones after noncurrent days
    
    It is possible to configure automatic removal of older noncurrent versions keeping only the most recent `N` using `NewerNoncurrentVersions`.
    
    e.g, To remove noncurrent versions of all objects keeping the most recent 5 noncurrent versions under the prefix `user-uploads/` 30 days after they become noncurrent ,
    
    ```
    {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top