Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for found$ (0.17 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/MethodInvocation.java

            found = true;
            this.result = result;
        }
    
        @Nullable
        public Object getResult() {
            return result;
        }
    
        public String getName() {
            return name;
        }
    
        public Class<?>[] getParameterTypes() {
            return parameterTypes;
        }
    
        public boolean found() {
            return found;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. internal/event/target/mysql_test.go

    	"testing"
    )
    
    // TestPostgreSQLRegistration checks if sql driver
    // is registered and fails otherwise.
    func TestMySQLRegistration(t *testing.T) {
    	var found bool
    	for _, drv := range sql.Drivers() {
    		if drv == "mysql" {
    			found = true
    			break
    		}
    	}
    	if !found {
    		t.Fatal("mysql driver not registered")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 02 14:53:13 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. pkg/test/util/yml/cache.go

    	var result []CacheKey
    	newKeys := make(map[CacheKey]struct{})
    
    	for _, p := range parts {
    		key := toKey(p.Descriptor)
    		result = append(result, key)
    		newKeys[key] = struct{}{}
    
    		state, found := c.resources[key]
    		if found {
    			if err = c.deleteFile(state.file); err != nil {
    				return nil, err
    			}
    		} else {
    			state = &resourceState{}
    			c.resources[key] = state
    		}
    		state.file = c.generateFileName(key)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/node_matchers_test.cc

      EXPECT_EQ(Explain(placeholder.node(), NodeWith(Op("Add"))),
                "\nexpected op Add but found Placeholder");
      EXPECT_EQ(Explain(placeholder.node(), NodeWith(Name("add"))),
                "\nexpected name add but found placeholder");
      EXPECT_EQ(Explain(placeholder.node(), NodeWith(Inputs(Out(NodeWith())))),
                "\nexpected 1 inputs but node has 0");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 14:43:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/go/parser/testdata/issue23434.src

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test case for go.dev/issue/23434: Better synchronization of
    // parser after missing type. There should be exactly
    // one error each time, with now follow errors.
    
    package p
    
    func g() {
    	m := make(map[string]! /* ERROR "expected type, found '!'" */ )
    	for {
    		x := 1
    		print(x)
    	}
    }
    
    func f() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 553 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.status.yaml.golden

        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
        - lastTransitionTime: fake
          message: No errors found
          reason: Programmed
          status: "True"
          type: Programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. test/solitaire.go

    // If a solution is found, solve prints the board after each move in a backward
    // fashion (i.e., the last board position is printed first, all the way back to
    // the starting board position).
    func solve() bool {
    	var last, n int
    	for pos, field := range board {
    		// try each board position
    		if field == '●' {
    			// found a peg
    			for _, dir := range [...]int{-1, -N, +1, +N} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/ipset/testing/fake_test.go

    	}
    
    	// test entries
    	found, err := fake.TestEntry("192.168.1.1,tcp:8080", set.Name)
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if !found {
    		t.Errorf("Unexpected entry 192.168.1.1,tcp:8080 not found")
    	}
    
    	found, err = fake.TestEntry("192.168.1.2,tcp:8081", set.Name)
    	if err != nil {
    		t.Errorf("Unexpected error: %v", err)
    	}
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. hack/verify-api-groups.sh

    for group_dirname in "${group_dirnames[@]}"; do
    	if ! grep -q "${group_dirname}/" "${client_gen_file}" ; then
    		found=0
    		for group_without_codegen in "${groups_without_codegen[@]}"; do
    			if [[ "${group_without_codegen}" == "${group_dirname}" ]]; then
    				found=1
    			fi
    		done
    		if [[ "${found}" -ne "1" && -f "${group_dirname}/types.go" ]] ; then
    			echo "need to add ${group_dirname}/ to ${client_gen_file}"
    			exit 1
    		fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/initialization/DirectoryInitScriptFinder.java

        protected void findScriptsInDir(File initScriptsDir, Collection<File> scripts) {
            if (!initScriptsDir.isDirectory()) {
                return;
            }
            List<File> found = initScriptsIn(initScriptsDir);
            Collections.sort(found);
            scripts.addAll(found);
        }
    
        @Nullable
        protected File resolveScriptFile(File dir, String basename) {
            return resolver().resolveScriptFile(dir, basename);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 11 12:55:11 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top