Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 297 for existed (0.14 sec)

  1. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    
    ## Emitting a problem
    
    Problems can be emitted via an injected `Problems` service.
    Here's an example on how to report a problem from a plugin.
    
    ====
    include::sample[dir="groovy",files="reporters/standard-plugin/src/main/java/reporters/StandardPlugin.java[tags=problems-api-report]"]
    ====
    
    
    ## Receiving a problem report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java

         * path if the project directory is given as an absolute path.
         *
         * @param projectDirectory The (possibly non-existent) base directory to locate the POM file in, must not be {@code
         *            null}.
         * @return The path to the (possibly non-existent) POM file, never {@code null}.
         * @since 4.0.0
         */
        Path locatePom(Path projectDirectory);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. pkg/envoy/agent.go

    		if status.err != nil {
    			if status.err.Error() == errOutOfMemory {
    				log.Warnf("Envoy may have been out of memory killed. Check memory usage and limits.")
    			}
    			log.Errorf("Envoy exited with error: %v", status.err)
    		} else {
    			log.Infof("Envoy exited normally")
    		}
    
    	case <-ctx.Done():
    		a.terminate()
    		log.Info("Agent has successfully terminated")
    	}
    }
    
    func (a *Agent) DisableDraining() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/skipnonapplied_test.go

    		t.Fatalf("exected %v entries in managedFields, but got %v: %#v", e, a, f.ManagedFields())
    	}
    
    	if e, a := "fieldmanager_test_apply", f.ManagedFields()[0].Manager; e != a {
    		t.Fatalf("exected first manager name to be %v, but got %v: %#v", e, a, f.ManagedFields())
    	}
    
    	if e, a := "before-first-apply", f.ManagedFields()[1].Manager; e != a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. pkg/cache/cache.go

    //	  if ok {
    //			fmt.Printf("Got value %v\n", value)
    //	  } else {
    //	     fmt.Printf("Value was not found, must have been evicted")
    //	  }
    type Cache interface {
    	// Ideas for the future:
    	//   - Return the number of entries in the cache in stats.
    	//   - Provide an eviction callback to know when entries are evicted.
    	//   - Have Set and Remove return the previous value for the key, if any.
    	//   - Have Get return the expiration time for entries.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_container_deletor.go

    			}
    		}
    	}, 0, wait.NeverStop)
    
    	return &podContainerDeletor{
    		worker:           buffer,
    		containersToKeep: containersToKeep,
    	}
    }
    
    // getContainersToDeleteInPod returns the exited containers in a pod whose name matches the name inferred from filterContainerId (if not empty), ordered by the creation time from the latest to the earliest.
    // If filterContainerID is empty, all dead containers in the pod are returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. docs/es/docs/python-types.md

    {!../../../docs_src/python_types/tutorial005.py!}
    ```
    
    ### Tipos con sub-tipos
    
    Existen algunas estructuras de datos que pueden contener otros valores, como `dict`, `list`, `set` y `tuple`. Los valores internos pueden tener su propio tipo también.
    
    Para declarar esos tipos y sub-tipos puedes usar el módulo estándar de Python `typing`.
    
    Él existe específicamente para dar soporte a este tipo de type hints.
    
    #### Listas
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1/generated.proto

      // but not yet healthy can be evicted only if the guarded application is not
      // disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
      // Healthy pods will be subject to the PDB for eviction.
      //
      // AlwaysAllow policy means that all running pods (status.phase="Running"),
      // but not yet healthy are considered disrupted and can be evicted regardless
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest.groovy

        def "emitsBuildOperationsForJUnitTests"() {
            given:
            executer.withRepositoryMirrors()
    
            when:
            run "test"
    
            then: "test build operations are emitted in expected hierarchy"
            def rootTestOp = operations.first(ExecuteTestBuildOperationType)
            rootTestOp.details.testDescriptor.name.startsWith("Gradle Test Run :test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/runtime/signal_windows_test.go

    	}
    	if err := cmd.Start(); err != nil {
    		t.Fatalf("Start failed: %v", err)
    	}
    	defer func() {
    		cmd.Process.Kill()
    		cmd.Wait()
    	}()
    
    	// check child exited gracefully, did not timeout
    	if err := cmd.Wait(); err != nil {
    		t.Fatalf("Program exited with error: %v\n%s", err, &stderr)
    	}
    
    	// check child received, handled SIGTERM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top