Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 545 for Imported (0.14 sec)

  1. src/cmd/compile/internal/types2/typexpr.go

    		}()
    	}
    
    	switch e := e0.(type) {
    	case *syntax.BadExpr:
    		// ignore - error reported before
    
    	case *syntax.Name:
    		var x operand
    		check.ident(&x, e, def, true)
    
    		switch x.mode {
    		case typexpr:
    			typ := x.typ
    			setDefType(def, typ)
    			return typ
    		case invalid:
    			// ignore - error reported before
    		case novalue:
    			check.errorf(&x, NotAType, "%s used as type", &x)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/go/types/typexpr.go

    			}
    		}()
    	}
    
    	switch e := e0.(type) {
    	case *ast.BadExpr:
    		// ignore - error reported before
    
    	case *ast.Ident:
    		var x operand
    		check.ident(&x, e, def, true)
    
    		switch x.mode {
    		case typexpr:
    			typ := x.typ
    			setDefType(def, typ)
    			return typ
    		case invalid:
    			// ignore - error reported before
    		case novalue:
    			check.errorf(&x, NotAType, "%s used as type", &x)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. misc/wasm/wasm_exec.js

    					// may synchronously trigger a Go event handler. This makes Go code get executed in the middle of the imported
    					// function. A goroutine can switch to a new stack if the current stack is too small (see morestack function).
    					// This changes the SP, thus we have to update the SP used by the imported function.
    
    					// func wasmExit(code int32)
    					"runtime.wasmExit": (sp) => {
    						sp >>>= 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

          logging.info('Saver created with SaverDef: %s', saver_def)
    
          # Variables should be restored once before exporting as saved model
          # because the variables are not initialized when the GraphDef was
          # imported.
          model_saver.restore(sess, checkpoint_dir)
    
        v1_builder.add_meta_graph_and_variables(
            sess,
            tags,
            signature_def_map=signature_def_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    	*s.Extra = t
    	return t
    }
    
    // WasmImport represents a WebAssembly (WASM) imported function with
    // parameters and results translated into WASM types based on the Go function
    // declaration.
    type WasmImport struct {
    	// Module holds the WASM module name specified by the //go:wasmimport
    	// directive.
    	Module string
    	// Name holds the WASM imported function name specified by the
    	// //go:wasmimport directive.
    	Name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/named.go

    	for n := range seen {
    		// We should never have to update the underlying type of an imported type;
    		// those underlying types should have been resolved during the import.
    		// Also, doing so would lead to a race condition (was go.dev/issue/31749).
    		// Do this check always, not just in debug mode (it's cheap).
    		if n.obj.pkg != check.pkg {
    			panic("imported type with unresolved underlying type")
    		}
    		n.underlying = u
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/time/zoneinfo_read.go

    // if it is imported.
    //
    //go:linkname registerLoadFromEmbeddedTZData
    func registerLoadFromEmbeddedTZData(f func(string) (string, error)) {
    	loadFromEmbeddedTZData = f
    }
    
    // loadFromEmbeddedTZData is used to load a specific tzdata file
    // from tzdata information embedded in the binary itself.
    // This is set when the time/tzdata package is imported,
    // via registerLoadFromEmbeddedTzdata.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

        }
    
        public void addImportedDependencyMgts(Map<MavenDependencyKey, PomDependencyMgt> inherited) {
            if (resolvedDependencyMgts != null) {
                throw new IllegalStateException("Cannot add imported dependency management elements after dependency management elements have been resolved for this POM.");
            }
            importedDependencyMgts.putAll(inherited);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

      EXPECT_TRUE(root_tuple);
    
      int num_func_ops = 0;
      module_->walk([&num_func_ops](func::FuncOp func_op) { num_func_ops++; });
    
      // Ensure that only a single computation was imported.
      EXPECT_EQ(num_func_ops, 1);
    }
    
    TEST_F(Tf2XlaRewriterTest, InsertsConstantParameters) {
      static constexpr char kModuleWithConstParam[] = R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/RegularImmutableBiMap.java

        this.keyTable = keyTable;
        this.valueTable = valueTable;
        this.entries = entries;
        this.mask = mask;
        this.hashCode = hashCode;
      }
    
      // checkNoConflictInKeyBucket is static imported from RegularImmutableMap
    
      /**
       * @throws IllegalArgumentException if another entry in the bucket has the same key
       * @throws BucketOverflowException if this bucket has too many entries, which may indicate a hash
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top