Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 228 for Egrave (0.12 sec)

  1. pkg/kubelet/config/http_test.go

    		if err := c.extractFromURL(); err == nil {
    			t.Errorf("%s: Expected error", testCase.desc)
    		}
    	}
    }
    
    func TestExtractPodsFromHTTP(t *testing.T) {
    	nodeName := "different-value"
    
    	grace := int64(30)
    	enableServiceLinks := v1.DefaultEnableServiceLinks
    	var testCases = []struct {
    		desc     string
    		pods     runtime.Object
    		expected kubetypes.PodUpdate
    	}{
    		{
    			desc: "Single pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/init_text_file_to_import_test_pass.cc

      if (error_code) return signalPassFailure();
    
      llvm::ToolOutputFile temp_file(filename, fd);
      temp_file.os() << "apple\n";
      temp_file.os() << "banana\n";
      temp_file.os() << "grape";
      temp_file.os().flush();
    
      // Replace filename constant ops to use the temporary file.
      MLIRContext* context = &getContext();
    
      for (func::FuncOp func : module.getOps<func::FuncOp>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:19:38 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/eviction_manager_test.go

    	}
    
    	// verify the right pod was killed with the right grace period.
    	if podKiller.pod != podToEvict {
    		t.Errorf("Manager chose to kill pod: %v, but should have chosen %v", podKiller.pod.Name, podToEvict.Name)
    	}
    	if podKiller.gracePeriodOverride == nil {
    		t.Errorf("Manager chose to kill pod but should have had a grace period override.")
    	}
    	observedGracePeriod := *podKiller.gracePeriodOverride
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. test-site/activator-launch-1.3.2.jar

    "&#188;"> <!ENTITY frac12 "&#189;"> <!ENTITY frac34 "&#190;"> <!ENTITY iquest "&#191;"> <!ENTITY Agrave "&#192;"> <!ENTITY Aacute "&#193;"> <!ENTITY Acirc "&#194;"> <!ENTITY Atilde "&#195;"> <!ENTITY Auml "&#196;"> <!ENTITY Aring "&#197;"> <!ENTITY AElig "&#198;"> <!ENTITY Ccedil "&#199;"> <!ENTITY Egrave "&#200;"> <!ENTITY Eacute "&#201;"> <!ENTITY Ecirc "&#202;"> <!ENTITY Euml "&#203;"> <!ENTITY Igrave "&#204;"> <!ENTITY Iacute "&#205;"> <!ENTITY Icirc "&#206;"> <!ENTITY Iuml "&#207;"> <!ENTITY ETH...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go

    // NewDeleteOptions returns a DeleteOptions indicating the resource should
    // be deleted within the specified grace period. Use zero to indicate
    // immediate deletion. If you would prefer to use the default grace period,
    // use &metav1.DeleteOptions{} directly.
    func NewDeleteOptions(grace int64) *DeleteOptions {
    	return &DeleteOptions{GracePeriodSeconds: &grace}
    }
    
    // NewPreconditionDeleteOptions returns a DeleteOptions with a UID precondition set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 10:58:36 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  6. docs/fr/docs/advanced/index.md

        Et il est possible que pour votre cas d'utilisation, la solution se trouve dans l'un d'entre eux.
    
    ## Lisez d'abord le didacticiel
    
    Vous pouvez utiliser la plupart des fonctionnalités de **FastAPI** grâce aux connaissances du [Tutoriel - Guide de l'utilisateur](../tutorial/index.md){.internal-link target=_blank}.
    
    Et les sections suivantes supposent que vous l'avez lu et que vous en connaissez les idées principales.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/types.go

    const (
    	errEndpointStopped = "endpoint %v has been stopped"
    )
    
    // endpointStopGracePeriod indicates the grace period after an endpoint is stopped
    // because its device plugin fails. DeviceManager keeps the stopped endpoint in its
    // cache during this grace period to cover the time gap for the capacity change to
    // take effect.
    const endpointStopGracePeriod = time.Duration(5) * time.Minute
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/init_text_file_to_import.mlir

      func.return
      // CHECK-LABEL: func @init_all_tables
      // CHECK-DAG: [[CST:%.*]]  = arith.constant dense<["apple", "banana", "grape"]> : tensor<3x!tf_type.string>
      // CHECK-DAG: [[CST_0:%.*]]  = arith.constant dense<[0, 1, 2]> : tensor<3xi64>
      // CHECK: [[VAL:%.*]] = "tf.HashTableV2"()
      // CHECK: "tf.LookupTableImportV2"([[VAL]], [[CST]], [[CST_0]])
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_termination_order_test.go

    				},
    			},
    		},
    	}
    	to := newTerminationOrdering(pod, getContainerNames(pod))
    
    	var wg sync.WaitGroup
    	var delays sync.Map
    
    	waitAndExit := func(name string) {
    		// just a two second grace period which is not long enough for all of the waits to finish
    		delay := int64(to.waitForTurn(name, 2))
    		delays.Store(name, delay)
    		time.Sleep(1 * time.Second)
    		to.containerTerminated(name)
    		wg.Done()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/init_text_file_to_import_saved_model.mlir

      func.return
      // CHECK-LABEL: func @init_all_tables
      // CHECK-DAG: [[CST:%.*]]  = arith.constant dense<["apple", "banana", "grape"]> : tensor<3x!tf_type.string>
      // CHECK-DAG: [[CST_0:%.*]]  = arith.constant dense<[0, 1, 2]> : tensor<3xi64>
      // CHECK: [[VAL:%.*]] = "tf.HashTableV2"()
      // CHECK: "tf.LookupTableImportV2"([[VAL]], [[CST]], [[CST_0]])
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top