Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for Allocate (0.32 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/fold_constants_to_subgraph.cc

            auto consumer_call = llvm::dyn_cast_or_null<func::CallOp>(consumer);
    
            if (!consumer_call) continue;
    
            auto function_name = consumer_call.getCallee();
    
            // Locate the argument position of the use.
            int argument_index = -1;
            for (int i = 0; i < consumer_call.getNumOperands(); ++i) {
              if (consumer_call.getOperand(i) == op->getResult(0)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/IoTestCase.java

        if (testDir != null) {
          return testDir;
        }
    
        URL testFileUrl = IoTestCase.class.getResource("testdata/i18n.txt");
        if (testFileUrl == null) {
          throw new RuntimeException("unable to locate testdata directory");
        }
    
        if (testFileUrl.getProtocol().equals("file")) {
          try {
            File testFile = new File(testFileUrl.toURI());
            testDir = testFile.getParentFile(); // the testdata directory
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/ts_test.go

    		t.Fatalf("reading %s: %v", dstdir, err)
    	}
    	for _, f := range files {
    		if strings.HasPrefix(f.Name(), "covmeta") {
    			return filepath.Join(dstdir, f.Name()), "hello.go:"
    		}
    	}
    	t.Fatalf("could not locate generated meta-data file")
    	return "", ""
    }
    
    func TestAuxMetaDataFiles(t *testing.T) {
    	if !goexperiment.CoverageRedesign {
    		return
    	}
    	if testing.CoverMode() == "" {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedGlobalScopeServices.java

            return moduleRegistry::getGlobalCacheRoots;
        }
    
        @Provides
        CurrentGradleInstallation createCurrentGradleInstallation() {
            return CurrentGradleInstallation.locate();
        }
    
        @Provides
        ClassLoaderFactory createClassLoaderFactory() {
            return new DefaultClassLoaderFactory();
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/go/types/labels.go

    type block struct {
    	parent *block                      // enclosing block
    	lstmt  *ast.LabeledStmt            // labeled statement to which this block belongs, or nil
    	labels map[string]*ast.LabeledStmt // allocated lazily
    }
    
    // insert records a new label declaration for the current block.
    // The label must not have been declared before in any block.
    func (b *block) insert(s *ast.LabeledStmt) {
    	name := s.Label.Name
    	if debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/labels.go

    type block struct {
    	parent *block                         // enclosing block
    	lstmt  *syntax.LabeledStmt            // labeled statement to which this block belongs, or nil
    	labels map[string]*syntax.LabeledStmt // allocated lazily
    }
    
    // insert records a new label declaration for the current block.
    // The label must not have been declared before in any block.
    func (b *block) insert(s *syntax.LabeledStmt) {
    	name := s.Label.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/trace/jsontrace_test.go

    		}
    	}
    	return
    }
    
    func checkPlausibleHeapMetrics(t *testing.T, data format.Data) {
    	hms := heapMetrics(data)
    	var nonZeroAllocated, nonZeroNextGC bool
    	for _, hm := range hms {
    		if hm.Allocated > 0 {
    			nonZeroAllocated = true
    		}
    		if hm.NextGC > 0 {
    			nonZeroNextGC = true
    		}
    	}
    
    	if !nonZeroAllocated {
    		t.Errorf("nonZeroAllocated=%v, want true", nonZeroAllocated)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/webhooks/validation/server/server.go

    func (o Options) String() string {
    	buf := &bytes.Buffer{}
    
    	_, _ = fmt.Fprintf(buf, "DomainSuffix: %s\n", o.DomainSuffix)
    	_, _ = fmt.Fprintf(buf, "Port: %d\n", o.Port)
    
    	return buf.String()
    }
    
    // DefaultArgs allocates an Options struct initialized with Webhook's default configuration.
    func DefaultArgs() Options {
    	return Options{
    		Port: 9443,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. internal/crypto/sse-s3.go

    	return keys, nil
    }
    
    // CreateMetadata encodes the sealed object key into the metadata and returns
    // the modified metadata. If the keyID and the kmsKey is not empty it encodes
    // both into the metadata as well. It allocates a new metadata map if metadata
    // is nil.
    func (sses3) CreateMetadata(metadata map[string]string, keyID string, kmsKey []byte, sealedKey SealedKey) map[string]string {
    	if sealedKey.Algorithm != SealAlgorithm {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'deprecation:repository-jcenter' : 'The RepositoryHandler.jcenter() method has been deprecated.',
            'task-selection:no-matches' : 'cannot locate task',
            'validation:configuration-cache-registration-of-listener-on-gradle-buildfinished-is-unsupported' : 'registration of listener on \'Gradle.buildFinished\' is unsupported',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top