Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for isShutdown (0.21 sec)

  1. okhttp/src/test/java/okhttp3/CallTest.kt

        )
        val call = client.newCall(Request(server.url("/")))
        val response = call.execute()
        assertThat(response.header("a\tb")).isEqualTo("c")
      }
    
      @Test
      fun connectFails() {
        server.shutdown()
        executeSynchronously("/")
          .assertFailure(IOException::class.java)
      }
    
      @Test
      fun requestBodySurvivesRetries() {
        server.enqueue(MockResponse())
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	s.accessKey = s.testServer.AccessKey
    	s.secretKey = s.testServer.SecretKey
    }
    
    func (s *TestSuiteCommon) RestartTestServer(c *check) {
    	// Shutdown.
    	s.testServer.cancel()
    	s.testServer.Server.Close()
    	s.testServer.Obj.Shutdown(context.Background())
    
    	// Restart.
    	ctx, cancel := context.WithCancel(context.Background())
    
    	s.testServer.cancel = cancel
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                    exec:
                      command:
                      - pilot-agent
                      - wait
              {{- else if $nativeSidecar }}
                {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
                lifecycle:
                  preStop:
                    exec:
                      command:
                      - pilot-agent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procsetsockopt                                           = modws2_32.NewProc("setsockopt")
    	procshutdown                                             = modws2_32.NewProc("shutdown")
    	procsocket                                               = modws2_32.NewProc("socket")
    	procWTSEnumerateSessionsW                                = modwtsapi32.NewProc("WTSEnumerateSessionsW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    	kubelet.evictionManager = evictionManager
    	kubelet.admitHandlers.AddPodAdmitHandler(evictionAdmitHandler)
    
    	// setup shutdown manager
    	shutdownManager, shutdownAdmitHandler := nodeshutdown.NewManager(&nodeshutdown.Config{
    		Logger:                          logger,
    		ProbeManager:                    kubelet.probeManager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		// copy over the pod disruption conditions from state which is already
    		// updated during the eviciton (due to either node resource pressure or
    		// node graceful shutdown). We do not re-generate the conditions based
    		// on the container statuses as they are added based on one-time events.
    		cType := v1.DisruptionTarget
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

        # Mount /var/lib/kubelet/pki on a tmpfs so it doesn't persist across
        # reboots. This can help avoid some rare instances of corrupt cert files
        # (e.g. created but not written during a shutdown). Kubelet crash-loops
        # in these cases. Do this after above mount calls so it isn't overwritten.
        echo "Mounting /var/lib/kubelet/pki on tmpfs"
        mount -t tmpfs tmpfs /var/lib/kubelet/pki
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.global.proxy.lifecycle }} lifecycle: {{ toYaml .Values.global.proxy.lifecycle | indent 6 }} {{- else if $holdProxy }} lifecycle: postStart: exec: command: - pilot-agent - wait {{- else if $nativeSidecar }} {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}} lifecycle: preStop: exec: command: - pilot-agent - request - --debug-port={{(annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort)}} - POST...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top