Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 537 for gce_instance (0.21 sec)

  1. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

    # This ConfigMap is used to ingest logs against old resources like
    # "gke_container" and "gce_instance" when $LOGGING_STACKDRIVER_RESOURCE_TYPES is
    # set to "old".
    # When $LOGGING_STACKDRIVER_RESOURCE_TYPES is set to "new", the ConfigMap in
    # fluentd-gcp-configmap.yaml will be used for ingesting logs against new
    # resources like "k8s_container" and "k8s_node".
    kind: ConfigMap
    apiVersion: v1
    data:
      containers.input.conf: |-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  2. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

    # to "new".
    # When $LOGGING_STACKDRIVER_RESOURCE_TYPES is set to "old", the ConfigMap in
    # fluentd-gcp-configmap-old.yaml will be used for ingesting logs against old
    # resources like "gke_container" and "gce_instance".
    kind: ConfigMap
    apiVersion: v1
    data:
      containers.input.conf: |-
        # This configuration file for Fluentd is used
        # to watch changes to Docker log files that live in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  3. cluster/log-dump/log-dump.sh

        gcloud logging read --order=asc \
              --format='table(timestamp,jsonPayload.resource.name,jsonPayload.event_subtype)' \
              --project "${PROJECT}" \
              "resource.type=\"gce_instance\"
               logName=\"projects/${PROJECT}/logs/compute.googleapis.com%2Factivity_log\"
               (jsonPayload.event_subtype=\"compute.instances.hostError\" OR jsonPayload.event_subtype=\"compute.instances.automaticRestart\")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. pkg/bootstrap/platform/gcp.go

    		resp, err := oauth2.NewClient(ctx, creds.TokenSource).Get(url)
    		if err != nil {
    			log.Warnf("unable to retrieve instance labels: %v", err)
    			success <- false
    			return
    
    		}
    		defer resp.Body.Close()
    		instance := &GcpInstance{}
    		if err := json.NewDecoder(resp.Body).Decode(instance); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      # Ingest logs against new resources like "k8s_container" and "k8s_node" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "new".
      # Ingest logs against old resources like "gke_container" and "gce_instance" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "old".
      if [[ "${LOGGING_STACKDRIVER_RESOURCE_TYPES:-old}" == "new" ]]; then
        local -r fluentd_gcp_configmap_yaml="${dst_dir}/fluentd-gcp/fluentd-gcp-configmap.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/MutableTypeToInstanceMapTest.java

        assertNull(map.getInstance(Integer.class));
    
        assertNull(map.putInstance(int.class, 0));
        assertNull(map.putInstance(Integer.class, 1));
        assertEquals(2, map.size());
    
        assertEquals(0, (int) map.getInstance(int.class));
        assertEquals(1, (int) map.getInstance(Integer.class));
    
        assertEquals(0, (int) map.putInstance(int.class, null));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelViews.java

        }
    
        public static <T> T getInstance(ModelView<?> untypedView, ModelReference<T> reference) {
            return assertType(untypedView, reference.getType()).getInstance();
        }
    
        public static <T> T getInstance(ModelView<?> untypedView, ModelType<T> type) {
            return assertType(untypedView, type).getInstance();
        }
    
        public static <T> T getInstance(ModelView<?> untypedView, Class<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/timer/TimeoutManagerTest.java

            assertNotNull(TimeoutManager.getInstance().thread);
            Thread.sleep(2000);
            assertEquals(count, expiredCount);
            assertEquals(1, TimeoutManager.getInstance().getTimeoutTaskCount());
            task.cancel();
            Thread.sleep(2000);
            assertEquals(0, TimeoutManager.getInstance().getTimeoutTaskCount());
            assertNull(TimeoutManager.getInstance().thread);
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.11.md

    * Update cadvisor godeps to v0.30.0 ([#64800](https://github.com/kubernetes/kubernetes/pull/64800))
    * Update event-exporter to version v0.2.0  that supports old (gke_container/gce_instance) and new (k8s_container/k8s_node/k8s_pod) stackdriver resources. ([#63918](https://github.com/kubernetes/kubernetes/pull/63918))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/reflect/ImmutableTypeToInstanceMapTest.java

                .put(int.class, 1)
                .build();
        assertEquals(2, map.size());
    
        assertEquals(0, (int) map.getInstance(Integer.class));
        assertEquals(0, (int) map.getInstance(TypeToken.of(Integer.class)));
        assertEquals(1, (int) map.getInstance(int.class));
        assertEquals(1, (int) map.getInstance(TypeToken.of(int.class)));
      }
    
      public void testParameterizedType() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top