Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,290 for costs (0.07 sec)

  1. plugin/pkg/auth/authorizer/node/graph.go

    		destinationEdgeIndex: map[int]*intSet{},
    		// experimentally determined to be the point at which iteration adds an order of magnitude to the authz check.
    		// since maintaining indexes costs time/memory while processing graph changes, we don't want to make this too low.
    		destinationEdgeThreshold: 200,
    	}
    }
    
    // vertexType indicates the type of the API object the vertex represents.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    			return 0, origP, errVarintOverflow
    		}
    	}
    	return 0, origP, errNeedMore
    }
    
    // readString reads an hpack string from p.
    //
    // It returns a reference to the encoded string data to permit deferring decode costs
    // until after the caller verifies all data is present.
    func (d *Decoder) readString(p []byte) (u undecodedString, remain []byte, err error) {
    	if len(p) == 0 {
    		return u, p, errNeedMore
    	}
    	isHuff := p[0]&128 != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * collection-based APIs. Further, this method allows precise control over the runtime type of the
       * output array, and may, under certain circumstances, be used to save allocation costs.
       *
       * <p>Suppose {@code x} is a queue known to contain only strings. The following code can be used
       * to dump the queue into a newly allocated array of {@code String}:
       *
       * <pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * collection-based APIs. Further, this method allows precise control over the runtime type of the
       * output array, and may, under certain circumstances, be used to save allocation costs.
       *
       * <p>Suppose {@code x} is a queue known to contain only strings. The following code can be used
       * to dump the queue into a newly allocated array of {@code String}:
       *
       * <pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. src/compress/flate/huffman_bit_writer.go

    	tokens = append(tokens, endBlockMarker)
    	numLiterals, numOffsets := w.indexTokens(tokens)
    
    	var extraBits int
    	storedSize, storable := w.storedSize(input)
    	if storable {
    		// We only bother calculating the costs of the extra bits required by
    		// the length of offset fields (which will be the same for both fixed
    		// and dynamic encoding), if we need to compare those two encodings
    		// against stored encoding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Converter.java

     * `Function<@Nullable A, @Nullable B>` already had to find a workaround. Still, there is a *ton* of
     * fallout from trying to switch. I would be shocked if the switch would offer benefits to anywhere
     * near enough users to justify the costs.
     *
     * Fortunately, if anyone does want to use a Converter as a `Function<@Nullable A, @Nullable B>`,
     * it's easy to get one: `converter::convert`.
     *
     * [*] In annotating this class, we're ignoring LegacyConverter.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Converter.java

     * `Function<@Nullable A, @Nullable B>` already had to find a workaround. Still, there is a *ton* of
     * fallout from trying to switch. I would be shocked if the switch would offer benefits to anywhere
     * near enough users to justify the costs.
     *
     * Fortunately, if anyone does want to use a Converter as a `Function<@Nullable A, @Nullable B>`,
     * it's easy to get one: `converter::convert`.
     *
     * [*] In annotating this class, we're ignoring LegacyConverter.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_4x.md

        fix insecure hosts crash with an `IllegalArgumentException` on Android.
    
    
    ## Version 4.7.0
    
    _2020-05-17_
    
     *  New: `HandshakeCertificates.Builder.addInsecureHost()` makes it easy to turn off security in
        private development environments that only carry test data. Prefer this over creating an
        all-trusting `TrustManager` because only hosts on the allowlist are insecure. From
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        to the jurisdiction of the courts located in the jurisdiction and
        venue specified in a notice contained within the Original Software,
        with the losing party responsible for costs, including, without
        limitation, court costs and reasonable attorneys' fees and expenses.
        The application of the United Nations Convention on Contracts for
        the International Sale of Goods is expressly excluded. Any law or
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/runtime/stack_test.go

    			c <- m                    // return token
    		}()
    	}
    }
    
    func useStackPtrs(n int, b bool) {
    	if b {
    		// This code contributes to the stack frame size, and hence to the
    		// stack copying cost. But since b is always false, it costs no
    		// execution time (not even the zeroing of a).
    		var a [128]*int // 1KB of pointers
    		a[n] = &n
    		n = *a[0]
    	}
    	if n == 0 {
    		return
    	}
    	useStackPtrs(n-1, b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top