Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,598 for Our (0.19 sec)

  1. code-of-conduct.md

    # Kubernetes Community Code of Conduct
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 20 18:33:36 UTC 2017
    - 148 bytes
    - Viewed (0)
  2. README.md

    ## Governance 
    
    Kubernetes project is governed by a framework of principles, values, policies and processes to help our community and constituents towards our shared goals.
    
    The [Kubernetes Community](https://github.com/kubernetes/community/blob/master/governance.md) is the launching point for learning about how we organize ourselves.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/decorated_watcher.go

    	var recv, send watch.Event
    	var ok bool
    	defer close(d.resultCh)
    	for {
    		select {
    		case recv, ok = <-d.w.ResultChan():
    			if !ok {
    				// The underlying channel was closed, cancel our context
    				d.cancel()
    				return
    			}
    			switch recv.Type {
    			case watch.Added, watch.Modified, watch.Deleted, watch.Bookmark:
    				d.decorator(recv.Object)
    				send = recv
    			case watch.Error:
    				send = recv
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 02 19:25:31 UTC 2021
    - 2.3K bytes
    - Viewed (1)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    - `settings.gradle(.kts)` file representing your Gradle build including required subprojects e.g. include("app", "model", "service")
    - `build.gradle(.kts)` and source code for each subproject in corresponding subdirectories
    
    Our build currently consists of a root project called `authoring-tutorial`, which has a single `app` subproject:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    .   // <1>
    ├── app // <2>
    │   ... // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Interners.java

            @SuppressWarnings("rawtypes") // using raw types to avoid a bug in our nullness checker :(
            InternalEntry entry = map.getEntry(sample);
            if (entry != null) {
              Object canonical = entry.getKey();
              if (canonical != null) { // only matters if weak/soft keys are used
                // The compiler would know this is safe if not for our use of raw types (see above).
                @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Build operations are our way to inspect the process of executing a build"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(libs.jsr305)
        api(projects.stdlibJavaExtensions)
    
        implementation(libs.slf4jApi)
    
        testFixturesImplementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 394 bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/code-of-conduct.md

    # Kubernetes Community Code of Conduct
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 21 15:08:30 UTC 2018
    - 148 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/code-of-conduct.md

    # Kubernetes Community Code of Conduct
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 20 20:21:56 UTC 2017
    - 148 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    func (c *Client) mergeLatest(msg []byte) error {
    	// Merge msg into our in-memory copy of the latest tree head.
    	when, err := c.mergeLatestMem(msg)
    	if err != nil {
    		return err
    	}
    	if when != msgFuture {
    		// msg matched our present or was in the past.
    		// No change to our present, so no update of config file.
    		return nil
    	}
    
    	// Flush our extended timeline back out to the configuration file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. testing/internal-architecture-testing/build.gradle.kts

    dependencies {
        api(platform(project(":distributions-dependencies")))
        api(libs.archunit)
        api(libs.archunitJunit5Api)
        api(libs.archunitJunit5) {
            because("This is what we use to write our architecture tests")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 379 bytes
    - Viewed (0)
Back to top