Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,201 for maxline (0.15 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryPublishingIntegrationTest.groovy

            def app = new CppAppWithLibrariesWithApiDependencies()
            def targetMachines = [machine(WINDOWS, currentArchitecture), machine(LINUX, currentArchitecture), machine(MACOS, currentArchitecture)]
    
            given:
            createDirs("deck", "card", "shuffle")
            settingsFile << "include 'deck', 'card', 'shuffle'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomMailingListSpec.java

     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.Action;
    
    /**
     * Allows to add mailing lists to a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomMailingList
     */
    public interface MavenPomMailingListSpec {
    
        /**
         * Creates, configures and adds a mailing list to the publication.
         */
        void mailingList(Action<? super MavenPomMailingList> action);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1012 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go

    //go:build arm64 && openbsd
    
    package unix
    
    type mibentry struct {
    	ctlname string
    	ctloid  []_C_int
    }
    
    var sysctlMib = []mibentry{
    	{"ddb.console", []_C_int{9, 6}},
    	{"ddb.log", []_C_int{9, 7}},
    	{"ddb.max_line", []_C_int{9, 3}},
    	{"ddb.max_width", []_C_int{9, 2}},
    	{"ddb.panic", []_C_int{9, 5}},
    	{"ddb.profile", []_C_int{9, 9}},
    	{"ddb.radix", []_C_int{9, 1}},
    	{"ddb.tab_stop_width", []_C_int{9, 4}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/AbstractCppPublishingIntegrationTest.groovy

                linkages.each { linkage ->
                    targetMachines.each { machine ->
                        String architectureNormalized = Dimensions.createDimensionSuffix(machine.architecture, targetMachines.collect { it.architecture }.unique())
                        String osFamilyNormalized = Dimensions.createDimensionSuffix(machine.os, targetMachines.collect { it.os }.unique())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/KeyMatch.java

            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
            return "KeyMatch [boost=" + boost + ", createdBy=" + createdBy + ", createdTime=" + createdTime + ", maxSize=" + maxSize
                    + ", query=" + query + ", term=" + term + ", updatedBy=" + updatedBy + ", updatedTime=" + updatedTime + ", docMeta="
                    + docMeta + "]";
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go

    //go:build amd64 && openbsd
    
    package unix
    
    type mibentry struct {
    	ctlname string
    	ctloid  []_C_int
    }
    
    var sysctlMib = []mibentry{
    	{"ddb.console", []_C_int{9, 6}},
    	{"ddb.log", []_C_int{9, 7}},
    	{"ddb.max_line", []_C_int{9, 3}},
    	{"ddb.max_width", []_C_int{9, 2}},
    	{"ddb.panic", []_C_int{9, 5}},
    	{"ddb.profile", []_C_int{9, 9}},
    	{"ddb.radix", []_C_int{9, 1}},
    	{"ddb.tab_stop_width", []_C_int{9, 4}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go

    //go:build arm && openbsd
    
    package unix
    
    type mibentry struct {
    	ctlname string
    	ctloid  []_C_int
    }
    
    var sysctlMib = []mibentry{
    	{"ddb.console", []_C_int{9, 6}},
    	{"ddb.log", []_C_int{9, 7}},
    	{"ddb.max_line", []_C_int{9, 3}},
    	{"ddb.max_width", []_C_int{9, 2}},
    	{"ddb.panic", []_C_int{9, 5}},
    	{"ddb.profile", []_C_int{9, 9}},
    	{"ddb.radix", []_C_int{9, 1}},
    	{"ddb.tab_stop_width", []_C_int{9, 4}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. internal/bpool/bpool.go

    type BytePoolCap struct {
    	c    chan []byte
    	w    int
    	wcap int
    }
    
    // NewBytePoolCap creates a new BytePool bounded to the given maxSize, with new
    // byte arrays sized based on width.
    func NewBytePoolCap(maxSize uint64, width int, capwidth int) (bp *BytePoolCap) {
    	if capwidth > 0 && capwidth < 64 {
    		panic("buffer capped with smaller than 64 bytes is not supported")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:44:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/regexp/exec.go

    // It holds both the instruction pc and the actual thread.
    // Some queue entries are just place holders so that the machine
    // knows it has considered that pc. Such entries have t == nil.
    type entry struct {
    	pc uint32
    	t  *thread
    }
    
    // A thread is the state of a single path through the machine:
    // an instruction and a corresponding capture array.
    // See https://swtch.com/~rsc/regexp/regexp2.html
    type thread struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    func NewControlPlaneJoinPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-join",
    		Short:   "Join a machine as a control plane instance",
    		Example: controlPlaneJoinExample,
    		Phases: []workflow.Phase{
    			{
    				Name:           "all",
    				Short:          "Join a machine as a control plane instance",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top