Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for ok1 (6.8 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    				"object.spec.string.findAll('[0-9]+').size() > 0",           // kubernetes string lib
    				"object.spec.list.isSorted()",                               // kubernetes list lib
    				"url(object.spec.endpoint).getHostname() in ['ok1', 'ok2']", // kubernetes url lib
    			},
    		},
    		{
    			name: "valid request",
    			expressions: []string{
    				"request.kind.group == 'example.com' && request.kind.version == 'v1' && request.kind.kind == 'Fake'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/archive/tar/writer_test.go

    			testWrite{"Kilts", 5, nil},
    			testHeader{Header{Name: "dir/"}, nil},
    			testClose{nil},
    		},
    	}}
    
    	equalError := func(x, y error) bool {
    		_, ok1 := x.(headerError)
    		_, ok2 := y.(headerError)
    		if ok1 || ok2 {
    			return ok1 && ok2
    		}
    		return x == y
    	}
    	for _, v := range vectors {
    		t.Run(path.Base(v.file), func(t *testing.T) {
    			const maxSize = 10 << 10 // 10KiB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    				if len(id) > 2 && id[1] == 'C' && id[2] == '$' {
    					sb.WriteByte(',')
    					id = id[3:]
    				} else if len(id) > 4 && id[1] == 'u' && id[4] == '$' {
    					dig1, ok1 := hexDigit(id[2])
    					dig2, ok2 := hexDigit(id[3])
    					val := (dig1 << 4) | dig2
    					if !ok1 || !ok2 || dig1 > 7 || val < ' ' {
    						valid = false
    					} else {
    						sb.WriteByte(val)
    						id = id[5:]
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadpe/ldpe.go

    			}
    		} else {
    			return nil, fmt.Errorf("%s: %v: sectnum < 0!", pn, s)
    		}
    
    		if sect == nil {
    			return nil, nil
    		}
    
    		// Check for COMDAT symbol.
    		if sz, ok1 := state.comdats[uint16(pesym.SectionNumber-1)]; ok1 {
    			if psz, ok2 := comdatDefinitions[l.SymName(s)]; ok2 {
    				if sz == psz {
    					//  OK to discard, we've seen an instance
    					// already.
    					continue
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. src/encoding/asn1/asn1.go

    			if ok {
    				offset = initOffset
    			} else {
    				err = StructuralError{"explicitly tagged member didn't match"}
    			}
    			return
    		}
    	}
    
    	matchAny, universalTag, compoundType, ok1 := getUniversalType(fieldType)
    	if !ok1 {
    		err = StructuralError{fmt.Sprintf("unknown Go type: %v", fieldType)}
    		return
    	}
    
    	// Special case for strings: all the ASN.1 string types map to the Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            process(ATestClassWithRunnerThatBreaksAfterRunningSomeTests)
    
            then:
            1 * processor.started({ it.id == 1 }, { it.parentId == null })
    
            1 * processor.started({ it.id == 2 && it.name == 'ok1' && it.className == ATestClassWithRunnerThatBreaksAfterRunningSomeTests.name }, { it.parentId == 1 })
            1 * processor.completed(2, { it.resultType == null })
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
Back to top