Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for room (0.51 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		entry, e := direntLeToDirentUnix(&entryLE, d, path)
    		if e != nil {
    			return n, e
    		}
    
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    			// Not enough room. Return for now.
    			// The counter will let us know where we should start up again.
    			// Note: this strategy for suspending in the middle and
    			// restarting is O(n^2) in the length of the directory. Oh well.
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	}
    	l.nhashedsyms = len(st.hashed64Syms) + len(st.hashedSyms)
    	for _, r := range l.objs[goObjStart:] {
    		loadObjRefs(l, r, arch)
    	}
    	l.values = make([]int64, l.NSym(), l.NSym()+1000) // +1000 make some room for external symbols
    	l.outer = make([]Sym, l.NSym(), l.NSym()+1000)
    }
    
    func loadObjRefs(l *Loader, r *oReader, arch *sys.Arch) {
    	// load non-package refs
    	ndef := uint32(r.NAlldef())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/virtualservice_test.go

    			*m = map[string]string{"test": "fuzz"}
    		})
    
    	root := &networking.HTTPMatchRequest{}
    	f.Fuzz(root)
    	root.SourceNamespace = ""
    	root.SourceLabels = nil
    	root.Gateways = nil
    	root.IgnoreUriCase = false
    	delegate := &networking.HTTPMatchRequest{}
    	merged := mergeHTTPMatchRequest(root, delegate)
    
    	assert.Equal(t, merged, root)
    }
    
    var gatewayNameTests = []struct {
    	gateway   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            when:
            configurationCacheFails 'alsoBroken'
    
            then:
            def reportDir4 = reportDir()
            reportDir4 == reportDir2
        }
    
        def "report is written to root project's buildDir"() {
            file("build.gradle") << """
                buildDir = 'out'
                tasks.register('broken') {
                    doFirst { println(project.name) }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            then:
            assertTransformed("root.blue", "root.additional.blue", "a.additional.blue", "a.jar")
            outputContains("files = [root.additional.blue.green, root.blue.green, a.jar.green, a.additional.blue.green]")
            outputContains("artifacts = [root.additional.blue.green (root.additional.blue), root.blue.green (root.blue), a.jar.green (project :a), a.additional.blue.green (a.additional.blue)]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        # Expect both quantized model to produce the same results.
        root = load.load(self._output_saved_model_path)
        self.assertCountEqual(root.signatures.keys(), {'serving_default'})
        new_outputs_1 = root.signatures['serving_default'](
            x=ops.convert_to_tensor(input_data)
        )
    
        root = load.load(output_saved_model_path_2)
        self.assertCountEqual(root.signatures.keys(), {'serving_default'})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    		// were added and they could become direct at any time.
    		if !inRootPaths[root.Path] && mg.Selected(root.Path) == root.Version {
    			rootPaths = append(rootPaths, root.Path)
    			inRootPaths[root.Path] = true
    		}
    	}
    
    	// “The selected version of every module path in direct is included as a root.”
    	//
    	// This is only for convenience and clarity for end users: in an unpruned module,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            Everything is resolvable but not x2
    
            Scenario:
             - We have batched up conflicts
             - root of one conflicted version is also conflicted
             - conflicted root is positioned on the conflicts queue after the conflicted child (the order of declaring dependencies matters)
             - winning root depends on a child that previously was evicted
             - finally, the winning child is an unresolved dependency
            */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. src/go/build/build.go

    				p.Goroot = true
    				p.Root = ctxt.GOROOT
    				goto Found
    			}
    		}
    		for _, root := range gopath {
    			dir := ctxt.joinPath(root, "src", path)
    			isDir := ctxt.isDir(dir)
    			binaryOnly = !isDir && mode&AllowBinary != 0 && pkga != "" && ctxt.isFile(ctxt.joinPath(root, pkga))
    			if isDir || binaryOnly {
    				p.Dir = dir
    				p.Root = root
    				goto Found
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			return "", false
    		}
    		var root string
    		var err error
    		if repl := Replacement(m); repl.Path != "" && repl.Version == "" {
    			root = repl.Path
    			if !filepath.IsAbs(root) {
    				root = filepath.Join(replaceRelativeTo(), root)
    			}
    		} else if repl.Path != "" {
    			root, err = modfetch.DownloadDir(ctx, repl)
    		} else {
    			root, err = modfetch.DownloadDir(ctx, m)
    		}
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top