Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for boot_id (0.15 sec)

  1. cluster/gce/upgrade.sh

    function do-single-node-upgrade() {
      local -r instance="$1"
      local kubectl_rc
      local boot_id
      boot_id=$("${KUBE_ROOT}/cluster/kubectl.sh" get node "${instance}" --output=jsonpath='{.status.nodeInfo.bootID}' 2>&1) && kubectl_rc=$? || kubectl_rc=$?
      if [[ "${kubectl_rc}" != 0 ]]; then
        echo "== FAILED to get bootID ${instance} =="
        echo "${boot_id}"
        return ${kubectl_rc}
      fi
    
      # Drain node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure.sh

        # do it here instead of the printf.
        latency="\"${latency}\""
      fi
    
      printf '[cloud.kubernetes.monitoring.proto.SerialportLog] {"cluster_hash":"%s","vm_instance_name":"%s","boot_id":"%s","timestamp":"%s","bootstrap_status":{"step_name":"%s","status":"%s","status_reason":"%s","latency":%s}}\n' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

        # do it here instead of the printf.
        latency="\"${latency}\""
      fi
    
      printf '[cloud.kubernetes.monitoring.proto.SerialportLog] {"cluster_hash":"%s","vm_instance_name":"%s","boot_id":"%s","timestamp":"%s","bootstrap_status":{"step_name":"%s","status":"%s","status_reason":"%s","latency":%s}}\n' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. samples/wasm_modules/header_injector/plugin.h

    // limitations under the License.
    
    #include "proxy_wasm_intrinsics.h"
    
    class HeaderInjectorRootContext : public RootContext {
     public:
      explicit HeaderInjectorRootContext(uint32_t id, std::string_view root_id)
          : RootContext(id, root_id) {}
    
      bool onConfigure(size_t) override;
    };
    
    class HeaderInjectorContext : public Context {
     public:
      explicit HeaderInjectorContext(uint32_t id, RootContext* root) : Context(id, root) {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodesysteminfo.go

    	return b
    }
    
    // WithBootID sets the BootID field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the BootID field is set to the value of the last call.
    func (b *NodeSystemInfoApplyConfiguration) WithBootID(value string) *NodeSystemInfoApplyConfiguration {
    	b.BootID = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

     subFilter: name: "envoy.router" patch: operation: INSERT_BEFORE value: name: istio.stats typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: root_id: stats_outbound configuration: | { "debug": "false", "stat_prefix": "istio" } vm_config: vm_id: stats_outbound runtime: envoy.wasm.runtime.null code: local: inline_string: envoy.wasm.stats - applyTo: HTTP_FILTER match: context: SIDECAR_INBOUND proxy:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

            processor.started(test, event);
    
            outputRedirector.setOutputOwner(test.getId());
    
            if (rootId == null) {
                outputRedirector.startRedirecting();
                rootId = test.getId();
            } else {
                Object parentId = event.getParentId();
                if (parentId == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/upgrade/1.8.6-install.yaml.tar

     subFilter: name: "envoy.router" patch: operation: INSERT_BEFORE value: name: istio.stats typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: root_id: stats_outbound configuration: | { "debug": "false", "stat_prefix": "istio" } vm_config: vm_id: stats_outbound runtime: envoy.wasm.runtime.null code: local: inline_string: envoy.wasm.stats - applyTo: HTTP_FILTER match: context: SIDECAR_INBOUND proxy:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 70K bytes
    - Viewed (0)
  9. pkg/kubelet/winstats/perfcounter_nodestats.go

    	if err != nil {
    		return nil, err
    	}
    
    	bootId, err := getBootID()
    	if err != nil {
    		return nil, err
    	}
    
    	return &cadvisorapi.MachineInfo{
    		NumCores:       ProcessorCount(),
    		MemoryCapacity: p.nodeInfo.memoryPhysicalCapacityBytes,
    		MachineID:      hostname,
    		SystemUUID:     systemUUID,
    		BootID:         bootId,
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/CrossVersionTestEngine.java

        }
    
        private List<TestVariant> buildTestVariants(UniqueId rootId, EngineDiscoveryRequest discoveryRequest) {
            List<TestVariant> variants = new ArrayList<TestVariant>();
            variants.add(TestVariant.tapiCurrent(rootId, discoveryRequest));
            variants.add(TestVariant.selected(rootId, discoveryRequest));
            variants.add(TestVariant.tapiTargetLoaded(rootId, discoveryRequest));
    
            return variants;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top