Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 126 for setFoo (0.46 sec)

  1. src/internal/reflectlite/value.go

    // A Value can be changed only if it is addressable and was not
    // obtained by the use of unexported struct fields.
    // If CanSet returns false, calling Set or any type-specific
    // setter (e.g., SetBool, SetInt) will panic.
    func (v Value) CanSet() bool {
    	return v.flag&(flagAddr|flagRO) == flagAddr
    }
    
    // Elem returns the value that the interface v contains
    // or that the pointer v points to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

        TF_ASSIGN_OR_RETURN(auto tf_name,
                            GetTensorFlowOpName(inst->getName().getStringRef()));
        op_name.append(tf_name);
      }
    
      node_def->set_name(name.str());
      node_def->set_op(std::string(op_name.str()));
    
      // Update NodeDef constructed out of an MLIR Case/If/While op to map it to
      // either TensorFlow StatelessX or X op depending on the additional attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/bugreport/bugreport.go

    	for _, p := range paths {
    		namespace, _, pod, container, err := cluster2.ParsePath(p)
    		if err != nil {
    			log.Error(err.Error())
    			continue
    		}
    
    		cp := params.SetNamespace(namespace).SetPod(pod).SetContainer(container)
    		proxyDir := archive.ProxyOutputPath(tempDir, namespace, pod)
    		switch {
    		case common.IsProxyContainer(params.ClusterVersion, container):
    			if !ambient.IsZtunnelPod(client, pod, namespace) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            """
    
            file("b/build.gradle") << """
                import ${Property.name}
    
                interface MyExtension {
                    Property<String> getFoo()
                }
    
                def myExtension = extensions.create('myExtension', MyExtension)
                myExtension.foo.set('configured')
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_experimental.cc

      const int num_inputs = input_shapes->num_items;
      NodeDef node_def;
      tensorflow::ImmediateExecutionOperation* op = tensorflow::unwrap(tfe_op);
      node_def.set_name(op->Name());
      node_def.set_op(op->Name());
      for (int i = 0; i < num_inputs; ++i) {
        node_def.add_input("dummy_input");
      }
      OperationFromInterface(op)->Attrs().FillAttrValueMap(node_def.mutable_attr());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  6. src/text/template/parse/parse.go

    	case itemIdentifier:
    		checkFunc := t.Mode&SkipFuncCheck == 0
    		if checkFunc && !t.hasFunction(token.val) {
    			t.errorf("function %q not defined", token.val)
    		}
    		return NewIdentifier(token.val).SetTree(t).SetPos(token.pos)
    	case itemDot:
    		return t.newDot(token.pos)
    	case itemNil:
    		return t.newNil(token.pos)
    	case itemVariable:
    		return t.useVar(token.pos, token.val)
    	case itemField:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadpe/ldpe.go

    			// X immediately.
    			if !isText {
    				r.SetSym(isym)
    				continue
    			}
    			// Flag this imp symbol to be processed later in windynrelocsym.
    			ldr.SetGot(rs, RedirectToDynImportGotToken)
    			// Consistency check: should be no PLT token here.
    			splt := ldr.SymPlt(rs)
    			if splt != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteS390X.go

    		if !(p.Op != OpSB && x.Uses == 1 && is20Bit(int64(i)-8) && setPos(v, x.Pos) && clobber(x)) {
    			break
    		}
    		v.reset(OpS390XSTMG2)
    		v.AuxInt = int32ToAuxInt(i - 8)
    		v.Aux = symToAux(s)
    		v.AddArg4(p, w0, w1, mem)
    		return true
    	}
    	// match: (MOVDstore [i] {s} p w2 x:(STMG2 [i-16] {s} p w0 w1 mem))
    	// cond: x.Uses == 1 && is20Bit(int64(i)-16) && setPos(v, x.Pos) && clobber(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                }
            }
    
            if (mojo instanceof Mojo) {
                Logger mojoLogger = LoggerFactory.getLogger(mojoDescriptor.getImplementation());
                ((Mojo) mojo).setLog(new MojoLogWrapper(mojoLogger));
            }
    
            if (mojo instanceof Contextualizable) {
                pluginValidationManager.reportPluginMojoValidationIssue(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. src/encoding/binary/binary.go

    				d.value(v)
    			} else {
    				d.skip(v)
    			}
    		}
    
    	case reflect.Slice:
    		l := v.Len()
    		for i := 0; i < l; i++ {
    			d.value(v.Index(i))
    		}
    
    	case reflect.Bool:
    		v.SetBool(d.bool())
    
    	case reflect.Int8:
    		v.SetInt(int64(d.int8()))
    	case reflect.Int16:
    		v.SetInt(int64(d.int16()))
    	case reflect.Int32:
    		v.SetInt(int64(d.int32()))
    	case reflect.Int64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top