Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,295 for unknownI (0.4 sec)

  1. src/internal/trace/testdata/fuzz/FuzzReader/closing-unknown-region

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 240 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/testdata/func_with_dead_ops.mlir

        %0 = "tf.ReadVariableOp"(%arg19)...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. src/crypto/x509/name_constraints_test.go

    		case "msSGC":
    			ekus = append(ekus, ExtKeyUsageMicrosoftServerGatedCrypto)
    		case "any":
    			ekus = append(ekus, ExtKeyUsageAny)
    		case "other":
    			unknowns = append(unknowns, asn1.ObjectIdentifier{2, 4, 1, 2, 3})
    		default:
    			return nil, nil, fmt.Errorf("unknown EKU %q", s)
    		}
    	}
    
    	return
    }
    
    func TestConstraintCases(t *testing.T) {
    	privateKeys := sync.Pool{
    		New: func() any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

            succeeds()
        }
    
        def "reports read unknown property from configure closure"() {
            buildFile << """
    tasks.help {
        println unknown
    }
    """
    
            expect:
            fails()
            failure.assertHasCause("Could not get unknown property 'unknown' for task ':help' of type org.gradle.configuration.Help.")
        }
    
        def "reports set unknown property from configure closure"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue25727.go

    var _ = http.Server{DoneChan: nil}  // ERROR "unknown field DoneChan in struct literal of type http.Server$|unknown field .?DoneChan.? in .?http.Server"
    
    type foo struct {
    	bar int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/lookup2.go

    }
    
    func _() {
    	_ = S{Foo1: 0} // OK
    	_ = S{Foo2 /* ERROR "unknown field Foo2 in struct literal of type S, but does have FoO2" */ : 0}
    	_ = S{Foo3 /* ERROR "unknown field Foo3 in struct literal of type S, but does have foo3" */ : 0}
    	_ = S{Foo4 /* ERROR "unknown field Foo4 in struct literal of type S, but does have foO4" */ : 0}
    
    	_ = S{foo1 /* ERROR "unknown field foo1 in struct literal of type S, but does have Foo1" */ : 0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/work_errors_pos.txt

    cp go.work.badgodebug.txt go.work
    ! go list
    stderr '^go.work:3: unknown godebug "foo"$'
    
    cp go.work.unparsable.txt go.work
    ! go list
    stderr '^go.work:5: unknown directive: notadirective'
    
    cp go.work.firstlineerr.txt go.work
    ! go list
    stderr '^go.work:1: unknown godebug "bar"$'
    
    cp go.work.firsterrlisted.txt go.work
    ! go list
    stderr '^go.work:1: unknown godebug "baz"$'
    
    -- foo/go.mod --
    module example.com/foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 926 bytes
    - Viewed (0)
  8. testing/internal-testing/src/test/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpecTest.groovy

            when:
            thread.blockUntil.unknown
    
            then:
            IllegalStateException e = thrown()
            e.message == "Timeout waiting for instant 'unknown' to be defined by another thread."
    
            when:
            async {
                thread.blockUntil.unknown
            }
    
            then:
            e = thrown()
            e.message == "Timeout waiting for instant 'unknown' to be defined by another thread."
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/config/schema/kubetypes/common.go

    	if gk, ok := getGvk(ptr.Empty[T]()); ok {
    		gr, ok := gvk.ToGVR(gk)
    		if !ok {
    			panic(fmt.Sprintf("unknown GVR for GVK %v", gk))
    		}
    		return gr
    	}
    	if rp := typemap.Get[RegisterType[T]](registeredTypes); rp != nil {
    		return (*rp).GetGVR()
    	}
    	panic("unknown kind: " + ptr.TypeName[T]())
    }
    
    func MustGVKFromType[T runtime.Object]() (cfg config.GroupVersionKind) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/env_write.txt

    ! go env -w GOEXPERIMENT=badexp
    stderr 'unknown GOEXPERIMENT badexp'
    go env -w GOEXPERIMENT=fieldtrack
    
    # go env -w and go env -u work on unknown fields already in the go/env file
    cp bad.env $GOENV
    go env GOENV
    cat $GOENV
    go env
    ! stdout UNKNOWN
    go env UNKNOWN
    stdout yes
    go env -w UNKNOWN=maybe
    go env UNKNOWN
    stdout maybe
    go env -u UNKNOWN
    go env UNKNOWN
    ! stdout . # gone
    
    -- bad.env --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top