Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pilot/pkg/leaderelection/k8sleaderelection/healthzadaptor_test.go

    // Update is a dummy to allow us to have a fakeLock for testing.
    func (fl *fakeLock) Update(ctx context.Context, ler rl.LeaderElectionRecord) error {
    	return nil
    }
    
    // RecordEvent is a dummy to allow us to have a fakeLock for testing.
    func (fl *fakeLock) RecordEvent(string) {}
    
    // Identity is a dummy to allow us to have a fakeLock for testing.
    func (fl *fakeLock) Identity() string {
    	return fl.identity
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 18:41:53 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/response-status-code.md

    * **`300`** and above are for "Redirection".  Responses with these status codes may or may not have a body, except for `304`, "Not Modified", which must not have one.
    * **`400`** and above are for "Client error" responses. These are the second type you would probably use the most.
        * An example is `404`, for a "Not Found" response.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. src/go/doc/comment/std_test.go

    		if !strings.Contains(pkg, "/") {
    			list = append(list, pkg)
    		}
    	}
    	slices.Sort(list)
    
    	have := strings.Join(stdPkgs, "\n") + "\n"
    	want := strings.Join(list, "\n") + "\n"
    	if have != want {
    		t.Errorf("stdPkgs is out of date: regenerate with 'go generate'\n%s", diff.Diff("stdPkgs", []byte(have), "want", []byte(want)))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 825 bytes
    - Viewed (0)
  10. internal/bucket/replication/filter.go

    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package replication
    
    import (
    	"encoding/xml"
    
    	"github.com/minio/minio-go/v7/pkg/tags"
    )
    
    var errInvalidFilter = Errorf("Filter must have exactly one of Prefix, Tag, or And specified")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 28 18:25:46 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top