Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for setLog (0.15 sec)

  1. src/cmd/compile/internal/ssagen/phi.go

    				// Only set arguments that have been resolved.
    				// For very wide CFGs, this significantly speeds up phi resolution.
    				// See golang.org/issue/8225.
    				if w := values[v.AuxInt]; w.Op != ssa.OpUnknown {
    					v.SetArg(i, w)
    				}
    			}
    		}
    
    		// Walk children in dominator tree.
    		for c := s.tree[b.ID].firstChild; c != nil; c = s.tree[c.ID].sibling {
    			stk = append(stk, stackEntry{b: c})
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    	if v < 0 {
    		return false
    	}
    	if (v & 0xFFF) == 0 {
    		v >>= 12
    	}
    	return v <= 0xFFF
    }
    
    // setPos sets the position of v to pos, then returns true.
    // Useful for setting the result of a rewrite's position to
    // something other than the default.
    func setPos(v *Value, pos src.XPos) bool {
    	v.Pos = pos
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. test-site/activator-launch-1.3.2.jar

    static void <clinit>(); } org/apache/ivy/core/LogOptions.class package org.apache.ivy.core; public synchronized class LogOptions { private String log; public void LogOptions(); public void LogOptions(LogOptions); public final String getLog(); public final LogOptions setLog(String); public static void checkCachePattern(String); public static org.apache.ivy.osgi.core.BundleInfo parseManifest(java.util.jar.Manifest); private static void parseRequirement(org.apache.ivy.osgi.core.BundleInfo, java.util.jar.Attributes,...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

      Block& entry = entry_func_op->getRegion(0).front();
      for (auto [arg, arg_type, arg_loc] :
           llvm::zip_equal(entry.getArguments(), arg_types, arg_locs)) {
        arg.setType(arg_type);
        arg.setLoc(arg_loc);
      }
    }
    
    // Creates a UniformQuantize op and sets it as return op.
    // The requantize scale and zero point should be determined from the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            }
            invokeStateSetMethod(methodVisitor);
    
            finishVisitingMethod(methodVisitor);
        }
    
        // the overload of type Object for Groovy coercions:  public void setFoo(Object foo)
        private void writeTypeConvertingSetter(ClassVisitor visitor, Type generatedType, Class<?> viewClass, ModelProperty<?> property) {
            WeaklyTypeReferencingMethod<?, ?> weakSetter = property.getAccessor(SETTER);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_linux_test.go

    		if bindMountExists != test.mountExists {
    			t.Errorf("test %q failed: expected bindMountExists %v, got %v", test.name, test.mountExists, bindMountExists)
    		}
    
    		logActions := fm.GetLog()
    		if len(test.expectAction) == 0 && len(logActions) > 0 {
    			t.Errorf("test %q failed: expected no actions, got %v", test.name, logActions)
    		}
    
    		if len(test.expectAction) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    func (l *Loader) SymGot(s Sym) int32 {
    	if v, ok := l.got[s]; ok {
    		return v
    	}
    	return -1
    }
    
    // SetGot sets the GOT offset of symbol i.
    func (l *Loader) SetGot(i Sym, v int32) {
    	if i >= Sym(len(l.objSyms)) || i == 0 {
    		panic("bad symbol for SetGot")
    	}
    	if v == -1 {
    		delete(l.got, i)
    	} else {
    		l.got[i] = v
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/expr.go

    		// and would lose the init list.
    		base.Fatalf("walkExpr init == &n->ninit")
    	}
    
    	if len(n.Init()) != 0 {
    		walkStmtList(n.Init())
    		init.Append(ir.TakeInit(n)...)
    	}
    
    	lno := ir.SetPos(n)
    
    	if base.Flag.LowerW > 1 {
    		ir.Dump("before walk expr", n)
    	}
    
    	if n.Typecheck() != 1 {
    		base.Fatalf("missed typecheck: %+v", n)
    	}
    
    	if n.Type().IsUntyped() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        bool reuse_existing_functions, FunctionLibraryDefinition* library) {
      // name_in is copied here because name may be modified below if
      // rewrite_subgraph_fn is true.
      string name = name_in;
      call_node_def_.set_op(name);
      call_node_def_.set_name(name);
      call_node_def_.set_device(device_);
    
      if (rewrite_subgraph_fn) {
        std::vector<OutputTensor> arg_source_tensors(args_by_src_.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		p.Pos = p.Pos.WithNotStmt()
    	}
    	return p
    }
    
    // Pc returns the current Prog.
    func (s *State) Pc() *obj.Prog {
    	return s.pp.Next
    }
    
    // SetPos sets the current source position.
    func (s *State) SetPos(pos src.XPos) {
    	s.pp.Pos = pos
    }
    
    // Br emits a single branch instruction and returns the instruction.
    // Not all architectures need the returned instruction, but otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top