Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for found$ (0.21 sec)

  1. releasenotes/notes/exit-if-sds-socket-not-found.yaml

    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 22:42:46 UTC 2023
    - 313 bytes
    - Viewed (0)
  2. src/cmd/internal/archive/archive_test.go

    		}
    		if e.Name == "go1.o" {
    			found1 = true
    		}
    		if e.Name == "go2.o" {
    			found2 = true
    		}
    	}
    	if !found1 {
    		t.Errorf(`object "go1.o" not found`)
    	}
    	if !found2 {
    		t.Errorf(`object "go2.o" not found`)
    	}
    }
    
    func TestParseCGOArchive(t *testing.T) {
    	testenv.MustHaveCGO(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 19:27:33 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. test/checkbce.go

    	useInt(a[uint(i*0x07C4ACDD)>>59])
    
    	// The following bounds should not be removed because they can overflow.
    	useInt(a[uint32(i*0x106297f105d0cc86)>>26]) // ERROR "Found IsInBounds$"
    	useInt(b[uint64(i*0x106297f105d0cc86)>>57]) // ERROR "Found IsInBounds$"
    	useInt(a[int32(i*0x106297f105d0cc86)>>26])  // ERROR "Found IsInBounds$"
    	useInt(b[int64(i*0x106297f105d0cc86)>>57])  // ERROR "Found IsInBounds$"
    }
    
    func g1(a []int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/sort/example_search_test.go

    	x = 0.5
    	i = sort.SearchFloat64s(a, x)
    	fmt.Printf("%g not found, can be inserted at index %d in %v\n", x, i, a)
    	// Output:
    	// found 2 at index 1 in [1 2 3.3 4.6 6.1 7.2 8]
    	// 0.5 not found, can be inserted at index 0 in [1 2 3.3 4.6 6.1 7.2 8]
    }
    
    // This example demonstrates searching for int in a list sorted in ascending order.
    func ExampleSearchInts() {
    	a := []int{1, 2, 3, 4, 6, 7, 8}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 18 08:25:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/types_test.go

    		t.Fatal("got field not found for 'CustomObject.nested.subname', wanted found")
    	}
    	if subnameFieldType.Type.GetPrimitive() != exprpb.Type_STRING {
    		t.Errorf("got field type %v, wanted string", subnameFieldType.Type)
    	}
    	flagsFieldType, found := rt.FindFieldType("CustomObject.nested", "flags")
    	if !found {
    		t.Fatal("got field not found for 'CustomObject.nested.flags', wanted found")
    	}
    	if flagsFieldType.Type.GetMapType() == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_run_pkgerror.txt

    stdout '^true\nfound packages m \(m\.go\) and main \(main\.go\) in '$PWD'\n\[main.go\]\n'
    
    
    # https://golang.org/issue/45827: 'go run .' should report the same package
    # errors as 'go build' and 'go list'.
    
    ! go build
    stderr '^found packages m \(m\.go\) and main \(main\.go\) in '$PWD'$'
    
    ! go list .
    stderr '^found packages m \(m\.go\) and main \(main\.go\) in '$PWD'$'
    
    ! go run .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 15:48:57 UTC 2021
    - 877 bytes
    - Viewed (0)
  8. test/typeparam/orderedmapsimp.dir/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./a"
    	"bytes"
    	"fmt"
    )
    
    func TestMap() {
    	m := a.New[[]byte, int](bytes.Compare)
    
    	if _, found := m.Find([]byte("a")); found {
    		panic(fmt.Sprintf("unexpectedly found %q in empty map", []byte("a")))
    	}
    
    	for _, c := range []int{'a', 'c', 'b'} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. pkg/credentialprovider/secrets/secrets_test.go

    					Password: "default-password",
    				},
    			},
    			found: true,
    		},
    	}
    
    	for _, testcase := range testcases {
    		t.Run(testcase.name, func(t *testing.T) {
    			keyring, err := MakeDockerKeyring(testcase.pullSecrets, testcase.defaultKeyring)
    			if err != nil {
    				t.Fatalf("error creating secret-based docker keyring: %v", err)
    			}
    
    			authConfigs, found := keyring.Lookup(testcase.image)
    			if found != testcase.found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:11:10 UTC 2020
    - 7.3K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.status.yaml.golden

          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:27 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top