Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 152 for forall (0.11 sec)

  1. test/typeparam/issue48042.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"reflect"
    )
    
    type G[T any] interface {
    	g() func()(*T)
    }
    type Foo[T any] struct {
    
    }
    // OCALL
    func (l *Foo[T]) f1() (*T) {
    	return g[T]()()
    }
    // OCALLFUNC
    func (l *Foo[T]) f2() (*T) {
    	var f = g[T]
    	return f()()
    }
    // OCALLMETH
    func (l *Foo[T]) f3() (*T) {
    	return l.g()()
    }
    // OCALLINTER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    // compatible), a Kind is the unique name for that Type within the Version, and a
    // Group identifies a set of Versions, Kinds, and Types that evolve over time. An
    // Unversioned Type is one that is not yet formally bound to a type and is promised
    // to be backwards compatible (effectively a "v1" of a Type that does not expect
    // to break in the future).
    //
    // Schemes are not expected to change at runtime and are only threadsafe after
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/util/Matchers.java

            return new BaseMatcher<T>() {
                @Override
                public boolean matches(Object o) {
                    return Pattern.compile(pattern, Pattern.DOTALL).matcher((CharSequence) o).matches();
                }
    
                @Override
                public void describeTo(Description description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.td

      let summary = "Rewrite graph for sequential execution of embeddings";
      let constructor = "TFDevice::CreateEmbeddingSequencingPass()";
        let description = [{
        This is a strictly sequential and formally correct fallback option for the
        embedding pipelining pass intended for debugging during pipelining
        development.
      }];
    }
    
    def EmbeddingProgramKeyPass : Pass<"tf-embedding-program-key", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

            return provider;
        }
    
        @Override
        public void discardAll() {
            discardAll(false);
        }
    
        private void discardAll(boolean forceAll) {
            withRegistrations(registrations -> {
                List<DefaultServiceRegistration<?, ?>> preserved = new ArrayList<>();
                try {
                    ExecutionResult.forEach(registrations, registration -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/lex/lex.go

    }
    
    func (l Token) String() string {
    	return l.text
    }
    
    // A Macro represents the definition of a #defined macro.
    type Macro struct {
    	name   string   // The #define name.
    	args   []string // Formal arguments.
    	tokens []Token  // Body of macro.
    }
    
    // Tokenize turns a string into a list of Tokens; used to parse the -D flag and in tests.
    func Tokenize(str string) []Token {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTaskExecutionCrossVersionSpec.groovy

            stdout.toString().contains("Task ${path}")
        }
    
        def tasksExecutedInOrder(String... tasks) {
            stdout.toString().matches(Pattern.compile(".*Task ${tasks.join('.* Task ')}.*", Pattern.DOTALL | Pattern.MULTILINE))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/RunTasksBeforeRunActionCrossVersion.groovy

                connection -> connection.action(new SimpleAction()).forTasks("bye").setStandardOutput(stdOut).run()
            }
    
            then:
            Pattern regex = Pattern.compile(".*hello.*bye.*starting action.*", Pattern.DOTALL)
            assert stdOut.toString().matches(regex)
            assert result == "Action result"
        }
    
        def "does not run any tasks when none specified and #description"() {
            file('build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. doc/go_mem.html

    aiming to keep the semantics simple, understandable, and useful.
    This section gives a general overview of the approach and should suffice for most programmers.
    The memory model is specified more formally in the next section.
    </p>
    
    <p>
    A data race is defined as
    a write to a memory location happening concurrently with another read or write to that same location,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

        public void cleanup() {
            if (cleanup && dir != null && dir.exists()) {
                ConcurrentTestUtil.poll(new Closure(null, null) {
                    @SuppressWarnings("UnusedDeclaration")
                    void doCall() throws IOException {
                        dir.forceDeleteDir();
                    }
                });
            }
        }
    
        @Override
        public Statement apply(final Statement base, Description description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top