Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 143 for mainIvy (0.17 sec)

  1. src/runtime/debug/garbage.go

    // The initial setting is 1 GB on 64-bit systems, 250 MB on 32-bit systems.
    // There may be a system-imposed maximum stack limit regardless
    // of the value provided to SetMaxStack.
    //
    // SetMaxStack is useful mainly for limiting the damage done by
    // goroutines that enter an infinite recursion. It only limits future
    // stack growth.
    func SetMaxStack(bytes int) int {
    	return setMaxStack(bytes)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/gencerts.sh

    # limitations under the License.
    
    set -e
    
    # gencerts.sh generates the certificates for the webhook authz plugin tests.
    #
    # It is not expected to be run often (there is no go generate rule), and mainly
    # exists for documentation purposes.
    
    cat > server.conf << EOF
    [req]
    req_extensions = v3_req
    distinguished_name = req_distinguished_name
    [req_distinguished_name]
    [ v3_req ]
    basicConstraints = CA:FALSE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 14:59:09 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/experimental/public/signature_def_function.h

    // https://github.com/tensorflow/tensorflow/blob/26c4ee0c833e74f94d0102d8b005c41a28b44445/tensorflow/cc/saved_model/loader.h#L96-L108
    // SignatureDefFunctions have different semantics from regular TF2
    // ConcreteFunctions, and are mainly intended provide a serving-friendly
    // transition point from the TF1 Session API.
    // First, SignatureDefFunctions have different calling conventions.
    // SignatureDefFunctions' inputs and outputs are constrained to **flattened
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * is complete. It does so by using daemon threads and adding a shutdown hook to wait for their
       * completion.
       *
       * <p>This is mainly for fixed thread pools. See {@link Executors#newFixedThreadPool(int)}.
       *
       * @param executor the executor to modify to make sure it exits when the application is finished
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/server-workers.md

    ## Gunicorn with Uvicorn Workers
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/runtime/mksizeclasses.go

    // for the above constraints would be that allocations of some
    // size might have a 26.6% (1.266x) overhead.
    // In practice, only one of the wastes comes into play for a
    // given size (sizes < 512 waste mainly on the round-up,
    // sizes > 512 waste mainly on the page chopping).
    // For really small sizes, alignment constraints force the
    // overhead higher.
    
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/format"
    	"io"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/AndroidGradlePluginVersions.groovy

                return JavaVersion.VERSION_11
            }
            return JavaVersion.VERSION_17
        }
    
        private static JavaVersion getMaximumJavaVersionFor(VersionNumber agpVersion) {
            // This is mainly to prevent running all AGP tests on too many java versions and reduce CI time
            if (agpVersion.baseVersion < AGP_7_0) {
                return JavaVersion.VERSION_11
            }
            return null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    	// the CUSTOM authorization policy when the ext-authz server is deployed locally with the application container in
    	// the same pod.
    	IncludeExtAuthz bool
    
    	// IPFamily for the service. This is optional field. Mainly is used for dual stack testing
    	IPFamilies string
    
    	// IPFamilyPolicy. This is optional field. Mainly is used for dual stack testing.
    	IPFamilyPolicy string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    			units[i] = unit
    			i++
    		}
    		sort.Strings(units)
    		unitsIgnored[key] = units
    	}
    
    	return numLabelUnits, unitsIgnored
    }
    
    // String dumps a text representation of a profile. Intended mainly
    // for debugging purposes.
    func (p *Profile) String() string {
    	ss := make([]string, 0, len(p.Comments)+len(p.Sample)+len(p.Mapping)+len(p.Location))
    	for _, c := range p.Comments {
    		ss = append(ss, "Comment: "+c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/edit.go

    Note that -require overrides any existing requirements on path.
    These flags are mainly for tools that understand the module graph.
    Users should prefer 'go get path@version' or 'go get path@none',
    which make other go.mod adjustments as needed to satisfy
    constraints imposed by other modules.
    
    The -go=version flag sets the expected Go language version.
    This flag is mainly for tools that understand Go version dependencies.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top