Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for dbase (0.07 sec)

  1. 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)
  2. 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)
  3. .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)
  4. 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)
  5. src/net/url/url_test.go

    	for _, test := range resolveReferenceTests {
    		base := mustParse(test.base)
    		rel := mustParse(test.rel)
    		url := base.ResolveReference(rel)
    		if got := url.String(); got != test.expected {
    			t.Errorf("URL(%q).ResolveReference(%q)\ngot  %q\nwant %q", test.base, test.rel, got, test.expected)
    		}
    		// Ensure that new instances are returned.
    		if base == url {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    	}
    	if dir, name := findAltConfig(base.Cwd()); dir != "" {
    		rel, err := filepath.Rel(base.Cwd(), dir)
    		if err != nil {
    			rel = dir
    		}
    		cdCmd := ""
    		if rel != "." {
    			cdCmd = fmt.Sprintf("cd %s && ", rel)
    		}
    		base.Fatalf("go: cannot find main module, but found %s in %s\n\tto create a module there, run:\n\t%sgo mod init", name, dir, cdCmd)
    	}
    	base.Fatal(ErrNoModRoot)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    			return
    		}
    	}
    
    	// heap
    	if base, s, _ := findObject(uintptr(p), 0, 0); base != 0 {
    		if s.spanclass.noscan() {
    			return nil
    		}
    		limit := base + s.elemsize
    
    		// Move the base up to the iterator's start, because
    		// we want to hide evidence of a malloc header from the
    		// caller.
    		tp := s.typePointersOfUnchecked(base)
    		base = tp.addr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    		newCtx.P = NoProc
    
    		// Queue an extra self-ProcSteal event.
    		extra := makeEvent(evt, curCtx, go122.EvProcSteal, ev.time, uint64(curCtx.P))
    		extra.base.extra(version.Go122)[0] = uint64(go122.ProcSyscall)
    		o.queue.push(extra)
    	}
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return newCtx, true, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		st.advance(1)
    		t := st.demangleType(isCast)
    		switch c {
    		case 'O':
    			ret = &RvalueReferenceType{Base: t}
    		case 'P':
    			ret = &PointerType{Base: t}
    		case 'R':
    			ret = &ReferenceType{Base: t}
    		case 'C':
    			ret = &ComplexType{Base: t}
    		case 'G':
    			ret = &ImaginaryType{Base: t}
    		}
    	case 'U':
    		if len(st.str) < 2 {
    			st.fail("expected source name or unnamed type")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top