Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 562 for STARTING (0.15 sec)

  1. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	defer c.queue.ShutDown()
    
    	klog.Infof("Starting cluster_authentication_trust_controller controller")
    	defer klog.Infof("Shutting down cluster_authentication_trust_controller controller")
    
    	// we have a personal informer that is narrowly scoped, start it.
    	go c.kubeSystemConfigMapInformer.Run(ctx.Done())
    
    	// wait for your secondary caches to fill before starting your work
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

            assertThrows(
                TimeoutException.class, () -> service.startAsync().awaitRunning(1, MILLISECONDS));
        assertThat(e)
            .hasMessageThat()
            .isEqualTo("Timed out waiting for Foo [STARTING] to reach the RUNNING state.");
      }
    
      private class TestService extends AbstractScheduledService {
        CyclicBarrier runFirstBarrier = new CyclicBarrier(2);
        CyclicBarrier runSecondBarrier = new CyclicBarrier(2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

            assertThrows(
                TimeoutException.class, () -> service.startAsync().awaitRunning(1, MILLISECONDS));
        assertThat(e)
            .hasMessageThat()
            .isEqualTo("Timed out waiting for Foo [STARTING] to reach the RUNNING state.");
      }
    
      private class TestService extends AbstractScheduledService {
        CyclicBarrier runFirstBarrier = new CyclicBarrier(2);
        CyclicBarrier runSecondBarrier = new CyclicBarrier(2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. src/image/gif/reader.go

    var interlacing = []interlaceScan{
    	{8, 0}, // Group 1 : Every 8th. row, starting with row 0.
    	{8, 4}, // Group 2 : Every 8th. row, starting with row 4.
    	{4, 2}, // Group 3 : Every 4th. row, starting with row 2.
    	{2, 1}, // Group 4 : Every 2nd. row, starting with row 1.
    }
    
    // uninterlace rearranges the pixels in m to account for interlaced input.
    func uninterlace(m *image.Paletted) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/bigger-applications.md

    !!! tip
        If you know perfectly how imports work, continue to the next section below.
    
    A single dot `.`, like in:
    
    ```Python
    from .dependencies import get_token_header
    ```
    
    would mean:
    
    * Starting in the same package that this module (the file `app/routers/items.py`) lives in (the directory `app/routers/`)...
    * find the module `dependencies` (an imaginary file at `app/routers/dependencies.py`)...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. samples/extauthz/cmd/extauthz/main.go

    	s.grpcServer = grpc.NewServer()
    	authv2.RegisterAuthorizationServer(s.grpcServer, s.grpcV2)
    	authv3.RegisterAuthorizationServer(s.grpcServer, s.grpcV3)
    
    	log.Printf("Starting gRPC server at %s", listener.Addr())
    	if err := s.grpcServer.Serve(listener); err != nil {
    		log.Fatalf("Failed to serve gRPC server: %v", err)
    		return
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

        }
    
        /**
         * Base64 encode user info for HTTP Basic Authentication.
         *
         * Try to use {@literal java.util.Base64} encoder which is available starting with Java 8.
         * Fallback to {@literal javax.xml.bind.DatatypeConverter} from JAXB which is available starting with Java 6 but is not anymore in Java 9.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_controller.go

    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.Infof("Starting %s", c.name)
    	defer klog.Infof("Shutting down %s", c.name)
    
    	go c.configmapInformer.Run(ctx.Done())
    
    	// wait for caches to fill before starting your work
    	if !cache.WaitForNamedCacheSync(c.name, ctx.Done(), c.configmapInformerSynced) {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	c.currentlyServedContent = newContent // this is single threaded, so we have no locking issue
    
    	return nil
    }
    
    // RunOnce runs a single sync step to ensure that we have a valid starting configuration.
    func (c *DynamicServingCertificateController) RunOnce() error {
    	return c.syncCerts()
    }
    
    // Run starts the kube-apiserver and blocks until stopCh is closed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/stream_executor/stream_executor.h

      void (*synchronize_all_activity)(const SP_Device* device, TF_Status* status);
    
      // Zero out `size` bytes starting at the location.
      void (*mem_zero)(const SP_Device* device, SP_Stream stream,
                       SP_DeviceMemoryBase* location, uint64_t size,
                       TF_Status* status);
    
      // Set the 8-bit patterns starting at the location with `size` bytes.
      void (*memset)(const SP_Device* device, SP_Stream stream,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
Back to top