Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for releasem (0.43 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      fbb->Map([&]() {
        fbb->Float("tolerance", tolerance);
        fbb->Bool("log_if_failed", log_if_failed);
      });
      fbb->Finish();
      auto f = std::unique_ptr<flexbuffers::Builder>(fbb.release());
      auto custom_option = f->GetBuffer();
      auto opcode_index =
          GetOpcodeIndex("NumericVerify", tflite::BuiltinOperator_CUSTOM);
    
      return tflite::CreateOperator(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

       * eligibility for garbage collection. This should be called every time expireEntries or
       * evictEntry is called (once the lock is released).
       */
      void processPendingNotifications() {
        RemovalNotification<K, V> notification;
        while ((notification = removalNotificationQueue.poll()) != null) {
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. fastapi/routing.py

    ) -> Callable[[WebSocket], Coroutine[Any, Any, Any]]:
        async def app(websocket: WebSocket) -> None:
            async with AsyncExitStack() as async_exit_stack:
                # TODO: remove this scope later, after a few releases
                # This scope fastapi_astack is no longer used by FastAPI, kept for
                # compatibility, just in case
                websocket.scope["fastapi_astack"] = async_exit_stack
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    		if err := pcm.Destroy(name); err != nil {
    			return err
    		}
    		klog.V(4).InfoS("Pod termination removed cgroups", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    
    	kl.usernsManager.Release(pod.UID)
    
    	// mark the final pod status
    	kl.statusManager.TerminatePod(pod)
    	klog.V(4).InfoS("Pod is terminated and will need no more status updates", "pod", klog.KObj(pod), "podUID", pod.UID)
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					Type: "string",
    				},
    				ValueValidation: &schema.ValueValidation{
    					Enum: []schema.JSON{
    						{Object: "Pending"},
    						{Object: "Available"},
    						{Object: "Bound"},
    						{Object: "Released"},
    						{Object: "Failed"},
    					},
    				},
    			}}),
    			valid: []string{
    				"self.enumStr == 'Pending'",
    				"self.enumStr in ['Pending', 'Available']",
    			},
    		},
    		{name: "conversions",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    			jobDeleted: true,
    			pods: []*v1.Pod{
    				buildPod().name("pod1").job(job).Pod,
    				buildPod().name("pod2").job(job).clearOwner().Pod,
    			},
    			wantPods: []string{"pod1"},
    		},
    		"release": {
    			pods: []*v1.Pod{
    				buildPod().name("pod1").job(job).Pod,
    				buildPod().name("pod2").job(job).clearLabels().Pod,
    			},
    			wantPods: []string{"pod1"},
    		},
    	}
    	for name, tc := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top