Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 255 for base_ (0.06 sec)

  1. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(base.resolve("")).isEqualTo(parse("http://host/a/b"))
        assertThat(base.resolve("\\path")).isEqualTo(parse("http://host/path"))
      }
    
      @Test
      fun resolveUnsupportedScheme() {
        val base = parse("http://a/")
        assertThat(base.resolve("ftp://b")).isNull()
        assertThat(base.resolve("ht+tp://b")).isNull()
        assertThat(base.resolve("ht-tp://b")).isNull()
        assertThat(base.resolve("ht.tp://b")).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  2. .teamcity/test-buckets.json

    					"messaging",
    					"snapshots",
    					"base-services"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TeamCityParallelTests",
    					"numberOfBatches":1
    				},
    				"subprojects":[
    					"build-init",
    					"publish",
    					"plugins-java-base",
    					"plugins-test-report-aggregation",
    					"problems-api",
    					"testing-base"
    				]
    			},
    			{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:354)
    	at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
    	at java.base/java.lang.reflect.Method.checkCanSetAccessible(Method.java:199)
    	at java.base/java.lang.reflect.Method.setAccessible(Method.java:193)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            if (parent != null) {
                validateStringNotEmpty(
                        "parent.groupId", problems, Severity.FATAL, Version.BASE, parent.getGroupId(), parent);
    
                validateStringNotEmpty(
                        "parent.artifactId", problems, Severity.FATAL, Version.BASE, parent.getArtifactId(), parent);
    
                if (equals(parent.getGroupId(), m.getGroupId()) && equals(parent.getArtifactId(), m.getArtifactId())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    }
    
    func (l *linearAlloc) init(base, size uintptr, mapMemory bool) {
    	if base+size < base {
    		// Chop off the last byte. The runtime isn't prepared
    		// to deal with situations where the bounds could overflow.
    		// Leave that memory reserved, though, so we don't map it
    		// later.
    		size -= 1
    	}
    	l.next, l.mapped = base, base
    	l.end = base + size
    	l.mapMemory = mapMemory
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            if (parent != null) {
                validateStringNotEmpty(
                        "parent.groupId", problems, Severity.FATAL, Version.BASE, parent.getGroupId(), parent);
    
                validateStringNotEmpty(
                        "parent.artifactId", problems, Severity.FATAL, Version.BASE, parent.getArtifactId(), parent);
    
                if (equals(parent.getGroupId(), m.getGroupId()) && equals(parent.getArtifactId(), m.getArtifactId())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  7. staging/publishing/rules.yaml

          - staging/src/k8s.io/code-generator
    - destination: component-base
      branches:
      - name: master
        dependencies:
        - repository: apimachinery
          branch: master
        - repository: api
          branch: master
        - repository: client-go
          branch: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/component-base
      - name: release-1.27
        go: 1.21.11
        dependencies:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [source,kotlin]
    ----
    plugins {
        base
    }
    
    base {
        archivesName.set("gradle")
        distsDirectory.set(layout.buildDirectory.dir("custom-dist"))
        libsDirectory.set(layout.buildDirectory.dir("custom-libs"))
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle
    [source,groovy]
    ----
    plugins {
        id 'base'
    }
    
    base {
        archivesName = "gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    	for _, lib := range libsOrdered {
    		// lib string is defined as base.a/mem.o or path/base.a/mem.o
    		n := strings.Split(lib, "/")
    		path := ""
    		base := n[len(n)-2]
    		mem := n[len(n)-1]
    		if len(n) > 2 {
    			path = lib[:len(lib)-len(base)-len(mem)-2]
    
    		}
    		ldimpf = &XcoffLdImportFile64{
    			Limpidpath: path,
    			Limpidbase: base,
    			Limpidmem:  mem,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	}
    
    	if base == 0 {
    		// Try to acquire a base address.
    		base, scav = h.pages.alloc(npages)
    		if base == 0 {
    			var ok bool
    			growth, ok = h.grow(npages)
    			if !ok {
    				unlock(&h.lock)
    				return nil
    			}
    			base, scav = h.pages.alloc(npages)
    			if base == 0 {
    				throw("grew heap, but no adequate free space found")
    			}
    		}
    	}
    	if s == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top