Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,957 for Filler (0.29 sec)

  1. internal/grid/connection.go

    		toDial = strings.Replace(toDial, "https://", "wss://", 1)
    		toDial += RoutePath
    
    		dialer := ws.DefaultDialer
    		dialer.ReadBufferSize = readBufferSize
    		dialer.WriteBufferSize = writeBufferSize
    		dialer.Timeout = defaultDialTimeout
    		if c.dialer != nil {
    			dialer.NetDial = c.dialer.DialContext
    		}
    		if c.header == nil {
    			c.header = make(http.Header, 2)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. src/math/big/prime.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package big
    
    import "math/rand"
    
    // ProbablyPrime reports whether x is probably prime,
    // applying the Miller-Rabin test with n pseudorandomly chosen bases
    // as well as a Baillie-PSW test.
    //
    // If x is prime, ProbablyPrime returns true.
    // If x is chosen randomly and not prime, ProbablyPrime probably returns false.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    					return
    				}
    			}
    			// Add tcp filter chain, build TCP filter chain first.
    			tcpOpts := buildSidecarOutboundTCPListenerOpts(listenerOpts, virtualServices)
    
    			// Add http filter chain and tcp filter chain to the listener opts
    			httpOpts := buildSidecarOutboundHTTPListenerOpts(listenerOpts, actualWildcards[0], listenerProtocol)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pilot/pkg/security/authn/policy_applier.go

    )
    
    // MTLSSettings describes the mTLS options for a filter chain
    type MTLSSettings struct {
    	// Port is the port this option applies for
    	Port uint32
    	// Mode is the mTLS  mode to use
    	Mode model.MutualTLSMode
    	// TCP describes the tls context to use for TCP filter chains
    	TCP *tlsv3.DownstreamTlsContext
    	// HTTP describes the tls context to use for HTTP filter chains
    	HTTP *tlsv3.DownstreamTlsContext
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. src/runtime/mwbbuf.go

    	gcw := &pp.gcw
    	pos := 0
    	for _, ptr := range ptrs {
    		if ptr < minLegalPointer {
    			// nil pointers are very common, especially
    			// for the "old" values. Filter out these and
    			// other "obvious" non-heap pointers ASAP.
    			//
    			// TODO: Should we filter out nils in the fast
    			// path to reduce the rate of flushes?
    			continue
    		}
    		obj, span, objIndex := findObject(ptr, 0, 0)
    		if obj == 0 {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/math/gamma.go

    	8.33333333333482257126e-02,
    }
    
    // Gamma function computed by Stirling's formula.
    // The pair of results must be multiplied together to get the actual answer.
    // The multiplication is left to the caller so that, if careful, the caller can avoid
    // infinity for 172 <= x <= 180.
    // The polynomial is valid for 33 <= x <= 172; larger values are only used
    // in reciprocal and produce denormalized floats. The lower precision there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return true;
        }
    
        /**
         * Returns a filtered list of classpath elements. This method is invoked when the caller
         * requested that all dependencies are placed on the classpath, with no module-path element.
         *
         * @param scopeFilter a filter returning {@code true} for the artifact scopes to accept.
         * @param includeTestDir whether to include the test directory in the classpath elements.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width.go

    	// AdditionalLatency specifies the additional duration the seats allocated
    	// to this request must be reserved after the given request had finished.
    	// AdditionalLatency should not have any impact on the user experience, the
    	// caller must not experience this additional latency.
    	AdditionalLatency time.Duration
    }
    
    // MaxSeats returns the maximum number of seats the request occupies over the
    // phases of being served.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    }
    
    // Transposes the convolution filter tensor of format [0, 1, i, o] to match the
    // filter tensor format for TFLite convolution. The following transformations
    // are supported:
    //
    // Depthwise case (`feature_group_count` > 1)
    //   * Permutates given filter to `[i, 0, 1, o]` format.
    // General convolution (`feature_group_count` = 1)
    //   * Permutates given filter to `[o, 0, 1, i]` format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

            return FlattenOperationResult.of(specs.stream().filter(e -> !ignoreSpec.test(e)).collect(toSet()));
        }
    
        private Stream<ExcludeSpec> maybeFilter(Set<ExcludeSpec> specs, Predicate<ExcludeSpec> ignoreSpec, boolean filtered) {
            Stream<ExcludeSpec> stream = specs.stream();
            if (filtered) {
                stream = stream.filter(e -> !ignoreSpec.test(e));
            }
            return stream;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
Back to top