Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 148 for variable1 (0.32 sec)

  1. src/text/template/exec_test.go

    	{"dot map", "<{{.}}>", "<map[two:22]>", map[string]int{"two": 22}, true},
    	{"dot struct", "<{{.}}>", "<{7 seven}>", struct {
    		a int
    		b string
    	}{7, "seven"}, true},
    
    	// Variables.
    	{"$ int", "{{$}}", "123", 123, true},
    	{"$.I", "{{$.I}}", "17", tVal, true},
    	{"$.U.V", "{{$.U.V}}", "v", tVal, true},
    	{"declare in action", "{{$x := $.U.V}}{{$x}}", "v", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

    typedef struct TF_WhileParams {
      // The number of inputs to the while loop, i.e. the number of loop variables.
      // This is the size of cond_inputs, body_inputs, and body_outputs.
      const int ninputs;
    
      // The while condition graph. The inputs are the current values of the loop
      // variables. The output should be a scalar boolean.
      TF_Graph* const cond_graph;
      const TF_Output* const cond_inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    func (tg *testgoData) sleep() {
    	time.Sleep(mtimeTick)
    }
    
    // setenv sets an environment variable to use when running the test go
    // command.
    func (tg *testgoData) setenv(name, val string) {
    	tg.t.Helper()
    	tg.unsetenv(name)
    	tg.env = append(tg.env, name+"="+val)
    }
    
    // unsetenv removes an environment variable.
    func (tg *testgoData) unsetenv(name string) {
    	if tg.env == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

    </project>
    """
    
            when:
            parsePom()
    
            then:
            metadata.id == componentId('group-one', 'artifact-one', 'my-version-SNAPSHOT')
        }
    
        def "Retrieves variables from parent"() {
            given:
            def parent = tmpDir.file("parent.xlm") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>test</groupId>
        <artifactId>parent</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		// ConvertPodSysctlsVariableToDotsSeparator converts sysctl variable
    		// in the Pod.Spec.SecurityContext.Sysctls slice into a dot as a separator.
    		// runc uses the dot as the separator to verify whether the sysctl variable
    		// is correct in a separate namespace, so when using the slash as the sysctl
    		// variable separator, runc returns an error: "sysctl is not in a separate kernel namespace"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

      }
    
     private:
      std::array<Predicate*, 1> operands_;
    };
    
    // Represents the liveness of an induction variable.  For users inside the loop
    // this represents the "current" liveness of the induction variable.  For users
    // outside the loop it represents the "last" liveness of the induction variable.
    //
    // More concretely, an and recurrence {S,&,X}<loop> represents the liveness of V
    // in the following graph:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    // test coverage on trybots. See https://go.dev/issue/34297.
    func defaultAllCodeGen() bool {
    	return os.Getenv("GO_BUILDER_NAME") == "linux-amd64"
    }
    
    var (
    	// Package-scoped variables that are initialized at the start of Test.
    	goTool       string
    	goos         string // Target GOOS
    	goarch       string // Target GOARCH
    	cgoEnabled   bool
    	goExperiment string
    	goDebug      string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    				fmt.Fprintf(fc, "extern byte *%s;\n", n.C)
    			} else {
    				// Force a reference to all symbols so that
    				// the external linker will add DT_NEEDED
    				// entries as needed on ELF systems.
    				// Treat function variables differently
    				// to avoid type conflict errors from LTO
    				// (Link Time Optimization).
    				if n.Kind == "fpvar" {
    					fmt.Fprintf(fm, "extern void %s();\n", n.C)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

          if (!edge->IsControlEdge()) {
            DataType dtype = edge->src()->output_type(edge->src_output());
            if (IsRefType(dtype)) {
              return errors::InvalidArgument(
                  "Ref Tensors (e.g., Variables) are not supported as results: "
                  "tensor ",
                  edge->src()->name(), ":", edge->src_output());
            }
          }
    
          Subgraph& src_subgraph = subgraphs_[src_func_id];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					tmp.type	= 'text/css';
    					tmp.media	= "all";
    					tmp.href	= opts.url;
    					document.getElementsByTagName("head")[0].appendChild(tmp);
    					return tmp.styleSheet;
    				}
    			}
    		}
    	};
    
    	// private variables
    	var instances = [],			// instance array (used by $.jstree.reference/create/focused)
    		focused_instance = -1,	// the index in the instance array of the currently focused instance
    		plugins = {},			// list of included plugins
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top