Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 9,318 for haxe (0.07 sec)

  1. src/crypto/internal/boring/README.md

    We have been working inside Google on a fork of Go that uses
    BoringCrypto (the core of [BoringSSL](https://boringssl.googlesource.com/boringssl/))
    for various crypto primitives, in furtherance of some work related to FIPS 140.
    We have heard that some external users of Go would be
    interested in this code as well, so we have published this code
    here in the main Go repository behind the setting GOEXPERIMENT=boringcrypto.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. hack/golangci-strict.yaml

          path-except: cmd/kubeadm
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source_test.go

    	defer testCancel()
    	require.NoError(t, testContext.Start())
    
    	require.Len(t, testContext.Source.Hooks(), 1, "should have one policy")
    	require.Len(t, testContext.Source.Hooks()[0].Bindings, 1, "should have one binding")
    	require.Equal(t, "binding1", testContext.Source.Hooks()[0].Bindings[0].GetName(), "should have one binding")
    
    	// Change the binding to another policy (policies without bindings should
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. test/typeparam/mdempsky/20.go

    package main
    
    func main() {
    	F[int]()
    	F[string]()
    }
    
    func F[X any]() {
    	call(T[X].M, T[X].N)
    }
    
    func call[X any](fns ...func(T[X]) int) {
    	for want, fn := range fns {
    		if have := fn(T[X]{}); have != want {
    			println("FAIL:", have, "!=", want)
    		}
    	}
    }
    
    type T[X any] struct {
    	E1
    	*E2[*X]
    }
    
    type E1 struct{}
    type E2[_ any] struct{}
    
    func (E1) M() int     { return 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 16:42:12 UTC 2022
    - 677 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/FormattingValidationProblemCollectorTest.groovy

            collector.add(WithConstructor.getDeclaredField("value"), "should accept an int")
            collector.add(SuperClass.getDeclaredField("value"), "cannot have fields")
    
            expect:
            collector.format() == """Type ${fullyQualifiedNameOf(WithConstructor)} is not a valid <thing>:
    - Field value is not valid: should have an initializer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/BuildListener.java

        /**
         * <p>Called when the build settings have been loaded and evaluated. The settings object is fully configured and is
         * ready to use to load the build projects.</p>
         *
         * @param settings The settings. Never null.
         */
        void settingsEvaluated(Settings settings);
    
        /**
         * <p>Called when the projects for the build have been created from the settings. None of the projects have been
         * evaluated.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. cmd/format-meta.go

    //   "format": "XXXXX",
    //   "XXXXX": {
    //
    //   }
    // }
    // Here "XXXXX" depends on the backend, currently we have "fs" and "xl" implementations.
    // formatMetaV1 should be inherited by backend format structs. Please look at format-fs.go
    // and format-xl.go for details.
    
    // Ideally we will never have a situation where we will have to change the
    // fields of this struct and deal with related migration.
    type formatMetaV1 struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. test/typeparam/mdempsky/16.go

    	"runtime"
    	"strings"
    )
    
    func main() {
    	// The exact error message isn't important, but it should mention
    	// `main.T`, not `go.shape.int_0`.
    	if have := F[T](); !strings.Contains(have, "interface { T() main.T }") {
    		fmt.Printf("FAIL: unexpected panic message: %q\n", have)
    	}
    }
    
    type T int
    
    func F[T any]() (res string) {
    	defer func() {
    		res = recover().(runtime.Error).Error()
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 21:35:49 UTC 2022
    - 722 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/fuse_test.go

    	for k, b := range fun.blocks {
    		if k[:1] == "z" && b.Kind != BlockInvalid {
    			t.Errorf("case3 %s was not eliminated, but should have", k)
    		}
    	}
    }
    
    func TestFuseSideEffects(t *testing.T) {
    	c := testConfig(t)
    	// Case1, test that we don't fuse branches that have side effects but
    	// have no use (e.g. followed by infinite loop).
    	// See issue #36005.
    	fun := c.Fun("entry",
    		Bloc("entry",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_init_invalid_major.txt

    stderr '(?s)^go: invalid module path "gopkg.in/pkg": module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN(.*)go mod init gopkg.in/pkg.v1$'
    
    ! go mod init gopkg.in/user/pkg
    stderr '(?s)^go: invalid module path "gopkg.in/user/pkg": module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN(.*)go mod init gopkg.in/user/pkg.v1$'
    
    ! go mod init gopkg.in/user/pkg/v0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 21:34:32 UTC 2021
    - 5.5K bytes
    - Viewed (0)
Back to top