Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,201 for maxline (0.16 sec)

  1. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-child.xml

      <mailingLists>
        <!--mailingList> MNG-3124: no way to add a list to parent content, only full override
          <name>child</name>
          <post>post@mailing.list.com</post>
          <subscribe>subscribe@mailing.list.com</subscribe>
          <unsubscribe>unsubscribe@mailing.list.com</unsubscribe>
        </mailingList-->
      </mailingLists>
    
      <build>
        <plugins>
          <plugin>
            <groupId>inheritance.configuration</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Dimensions.java

            for (TargetMachine machine : testTargetMachines) {
                if (!mainTargetMachines.contains(machine)) {
                    throw new IllegalArgumentException("The target machine " + machine.toString() + " was specified for the unit test, but this target machine was not specified on the component under test.");
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetMachineBuilder.java

         */
        TargetMachine getX86();
    
        /**
         * Returns a {@link TargetMachine} for the operating system of this machine and the x86 64-bit architecture
         */
        TargetMachine getX86_64();
    
        /**
         * Returns a {@link TargetMachine} for the operating system of this machine and the specified architecture.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. src/unicode/utf16/utf16_test.go

    	"reflect"
    	"testing"
    	"unicode"
    	. "unicode/utf16"
    )
    
    // Validate the constants redefined from unicode.
    func TestConstants(t *testing.T) {
    	if MaxRune != unicode.MaxRune {
    		t.Errorf("utf16.maxRune is wrong: %x should be %x", MaxRune, unicode.MaxRune)
    	}
    	if ReplacementChar != unicode.ReplacementChar {
    		t.Errorf("utf16.replacementChar is wrong: %x should be %x", ReplacementChar, unicode.ReplacementChar)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/net/http/mapping_test.go

    import (
    	"cmp"
    	"fmt"
    	"slices"
    	"strconv"
    	"testing"
    )
    
    func TestMapping(t *testing.T) {
    	var m mapping[int, string]
    	for i := 0; i < maxSlice; i++ {
    		m.add(i, strconv.Itoa(i))
    	}
    	if m.m != nil {
    		t.Fatal("m.m != nil")
    	}
    	for i := 0; i < maxSlice; i++ {
    		g, _ := m.find(i)
    		w := strconv.Itoa(i)
    		if g != w {
    			t.Fatalf("%d: got %s, want %s", i, g, w)
    		}
    	}
    	m.add(4, "4")
    	if m.s != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 17:47:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. src/syscall/route_freebsd.go

    func init() {
    	conf, _ := Sysctl("kern.conftxt")
    	for i, j := 0, 0; j < len(conf); j++ {
    		if conf[j] != '\n' {
    			continue
    		}
    		s := conf[i:j]
    		i = j + 1
    		if len(s) > len("machine") && s[:len("machine")] == "machine" {
    			s = s[len("machine"):]
    			for k := 0; k < len(s); k++ {
    				if s[k] == ' ' || s[k] == '\t' {
    					s = s[1:]
    				}
    				break
    			}
    			freebsdConfArch = s
    			break
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 05 21:38:13 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/StandardSystemProperty.java

      JAVA_HOME("java.home"),
    
      /** Java Virtual Machine specification version. */
      JAVA_VM_SPECIFICATION_VERSION("java.vm.specification.version"),
    
      /** Java Virtual Machine specification vendor. */
      JAVA_VM_SPECIFICATION_VENDOR("java.vm.specification.vendor"),
    
      /** Java Virtual Machine specification name. */
      JAVA_VM_SPECIFICATION_NAME("java.vm.specification.name"),
    
      /** Java Virtual Machine implementation version. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/unicode/utf16/export_test.go

    package utf16
    
    // Extra names for constants so we can validate them during testing.
    const (
    	Surr1           = surr1
    	Surr3           = surr3
    	SurrSelf        = surrSelf
    	MaxRune         = maxRune
    	ReplacementChar = replacementChar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 394 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/route/sys_freebsd.go

    	conf, _ := syscall.Sysctl("kern.conftxt")
    	for i, j := 0, 0; j < len(conf); j++ {
    		if conf[j] != '\n' {
    			continue
    		}
    		s := conf[i:j]
    		i = j + 1
    		if len(s) > len("machine") && s[:len("machine")] == "machine" {
    			s = s[len("machine"):]
    			for k := 0; k < len(s); k++ {
    				if s[k] == ' ' || s[k] == '\t' {
    					s = s[1:]
    				}
    				break
    			}
    			if s == "amd64" {
    				align = 8
    			}
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/BufferCacheImpl.java

            this(cfg.getBufferCacheSize(), cfg.getMaximumBufferSize());
        }
    
    
        /**
         * @param maxBuffers
         * @param maxSize
         * 
         */
        public BufferCacheImpl ( int maxBuffers, int maxSize ) {
            this.cache = new Object[maxBuffers];
            this.bufferSize = maxSize;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.BufferCache#getBuffer()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jan 24 11:40:34 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top