Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,607 for Invokes (0.17 sec)

  1. src/cmd/go/internal/lockedfile/lockedfile.go

    	if err != nil {
    		return err
    	}
    
    	_, err = io.Copy(f, content)
    	if closeErr := f.Close(); err == nil {
    		err = closeErr
    	}
    	return err
    }
    
    // Transform invokes t with the result of reading the named file, with its lock
    // still held.
    //
    // If t returns a nil error, Transform then writes the returned contents back to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    // the `module`, raise these `Operations` (and any ops contained nested within)
    // to the body of a new seperate root level function. Replace in their current
    // location with a `CallOp` which invokes said `FuncOp`. The inputs to
    // this new functions are taken to be the `Values` that appear as operands
    // to ops in the subgraph, which are not self-contained within the subgraph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

            }
    
            where:
            expression      | _
            "version"       | _
            "this.version"  | _
            "owner.version" | _
        }
    
        def "from-cache build fails when task action closure invokes a project method"() {
            given:
            buildFile << """
                tasks.register("some") {
                    doFirst {
                        println(file("broken"))
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    type waitWithContextFunc func(ctx context.Context) <-chan struct{}
    
    // waitForWithContext continually checks 'fn' as driven by 'wait'.
    //
    // waitForWithContext gets a channel from 'wait()”, and then invokes 'fn'
    // once for every value placed on the channel and once more when the
    // channel is closed. If the channel is closed and 'fn'
    // returns false without error, waitForWithContext returns ErrWaitTimeout.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

      TF_DerivedOperandTypeListAttr Tin = TF_DerivedOperandTypeListAttr<0>;
      TF_DerivedResultTypeListAttr Tout = TF_DerivedResultTypeListAttr<0>;
    }
    
    
    def TF_IfrtCallOp : TF_Op<"IfrtCall", []> {
      let summary = "Invokes a program via IFRT on a device";
    
      let description = [{
        This op calls an IFRT program uniquely identified by the given program id.
    
        During lowering from a `tf_device.cluster_func` op to a `tf.IfrtCall` op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/cmd/gofmt/gofmt.go

    //
    // f may run concurrently in a goroutine, but its output to the passed-in
    // reporter will be sequential relative to the other tasks in the sequencer.
    //
    // If f invokes a method on the reporter, execution of that method may block
    // until the previous task has finished. (To maximize concurrency, f should
    // avoid invoking the reporter until it has finished any parallelizable work.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/go/ast/walk.go

    	if f(node) {
    		return f
    	}
    	return nil
    }
    
    // Inspect traverses an AST in depth-first order: It starts by calling
    // f(node); node must not be nil. If f returns true, Inspect invokes f
    // recursively for each of the non-nil children of node, followed by a
    // call of f(nil).
    func Inspect(node Node, f func(Node) bool) {
    	Walk(inspector(f), node)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       * e.g., to check ordering in lists, but realize that <strong>unless a test extends {@link
       * com.google.common.collect.testing.testers.AbstractListTester AbstractListTester}, a call to
       * {@code expectContents()} invokes this version</strong>.
       *
       * @param expected expected value of {@link #container}
       */
      /*
       * TODO: improve this and other implementations and move out of this framework
       * for wider use
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    				continue
    			}
    		}
    		i++
    	}
    }
    
    // Nodes visits the nodes of the files supplied to New in depth-first
    // order. It calls f(n, true) for each node n before it visits n's
    // children. If f returns true, Nodes invokes f recursively for each
    // of the non-nil children of the node, followed by a call of
    // f(n, false).
    //
    // The complete traversal sequence is determined by ast.Inspect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. src/text/template/doc.go

    	{{define "T1"}}ONE{{end}}
    	{{define "T2"}}TWO{{end}}
    	{{define "T3"}}{{template "T1"}} {{template "T2"}}{{end}}
    	{{template "T3"}}
    
    This defines two templates, T1 and T2, and a third T3 that invokes the other two
    when it is executed. Finally it invokes T3. If executed this template will
    produce the text
    
    	ONE TWO
    
    By construction, a template may reside in only one association. If it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top