Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 415 for tings (0.38 sec)

  1. manifests/charts/ztunnel/files/profile-demo.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The demo profile enables a variety of things to try out Istio in non-production environments.
    # * Lower resource utilization.
    # * Some additional features are enabled by default; especially ones used in some tasks in istio.io.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

                }
                "clean"(type = Delete::class) {
                    delete("things")
                }
            }
    
            tasks.getByName<Delete>("clean") {
                delete("build")
            }
    
            inOrder(clean) {
                verify(clean).delete("stuff")
                verify(clean).delete("things")
                verify(clean).delete("build")
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    		// if you had no error, tell the queue to stop tracking history for your key.  This will
    		// reset things like failure counts for per-item rate limiting
    		c.queue.Forget(key)
    		return true
    	}
    
    	// there was a failure so be sure to report it.  This method allows for pluggable error handling
    	// which can be used for things like cluster-monitoring
    	utilruntime.HandleError(fmt.Errorf("%v failed with : %v", key, err))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    	}
    
    	// now we need to wait until all the resources are deleted.  Start with a simple poll before we do anything fancy.
    	// TODO not all servers are synchronized on caches.  It is possible for a stale one to still be creating things.
    	// Once we have a mechanism for servers to indicate their states, we should check that for concurrence.
    	err = wait.PollImmediate(5*time.Second, 1*time.Minute, func() (bool, error) {
    		listObj, err := crClient.List(ctx, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/encoding/Identifier.java

        public static Identifier getNonAscii() {
            if (OperatingSystem.current().isMacOsX()) {
                // The hfs+ file system stores file names in decomposed form. Don't use precomposed characters on macOS, as way too few things normalise text correctly
                return new Identifier(NON_PRECOMPOSED_NON_ASCII, "non-ascii");
            }
            return new Identifier(NON_ASCII_CHARS, "non-ascii");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/runlit.site.cfg.py

    # limitations under the License.
    """Lit runner site configuration."""
    
    import os
    import platform
    import lit.llvm
    
    # Handle the test srcdir for platforms. On windows, things are weird with bazel.
    if platform.system() == 'Windows':
      srcdir = os.environ['TEST_SRCDIR']
      real_test_srcdir = srcdir[:srcdir.find('tensorflow/compiler/mlir')]
      external_srcdir = os.path.join(real_test_srcdir, 'external')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/CompositeStoppable.java

    import java.io.Closeable;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * A {@link org.gradle.internal.concurrent.Stoppable} that stops a collection of things. If an element implements
     * {@link java.io.Closeable} or {@link org.gradle.internal.concurrent.Stoppable} then the appropriate close/stop
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

         * module versions to the more general component instances. Currently, the module version and component identifiers are used interchangeably. However, over
         * time more things will use the component identifier. At some point, the module version identifier will become optional for a component.
         */
        ModuleVersionIdentifier getModuleVersionId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/dependencies/index.md

    ## What is "Dependency Injection"
    
    **"Dependency Injection"** means, in programming, that there is a way for your code (in this case, your *path operation functions*) to declare things that it requires to work and use: "dependencies".
    
    And then, that system (in this case **FastAPI**) will take care of doing whatever is needed to provide your code with those needed dependencies ("inject" the dependencies).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/apache/1/apache-1.pom

             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <!-- Shared parent. Doesn't define a lot of things about Apache like general mailing lists, but does
           define the settings common to all projects at Apache -->
      <groupId>org.apache</groupId>
      <artifactId>apache</artifactId>
      <version>1</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top