Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for Gcs (0.1 sec)

  1. cluster/log-dump/log-dump.sh

      if [[ "${DUMP_ONLY_MASTER_LOGS:-}" == "true" ]]; then
        echo 'Skipping dumping of node logs'
        return
      fi
    
      # Copy logs from nodes to GCS directly or to artifacts dir locally (through SSH).
      if [[ -n "${gcs_artifacts_dir}" ]]; then
        echo "Dumping logs from nodes to GCS directly at '${gcs_artifacts_dir}' using logexporter"
        dump_nodes_with_logexporter
      else
        echo "Dumping logs from nodes locally to '${report_dir}'"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. .teamcity/subprojects.json

        "path": "platforms/software/resources",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "resources-gcs",
        "path": "platforms/software/resources-gcs",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "resources-http",
        "path": "platforms/software/resources-http",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. src/sync/pool_test.go

    			}
    			for i, v := range items {
    				p.Put(v)
    				items[i] = nil
    			}
    		}
    		_ = sink
    	})
    	runtime.ReadMemStats(&mstats2)
    
    	b.ReportMetric(float64(mstats2.NumGC-mstats1.NumGC)/float64(b.N), "GCs/op")
    	b.ReportMetric(float64(nNew)/float64(b.N), "New/op")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/runtime/gc_test.go

    	runtime.GC()
    
    	var ms1, ms2 runtime.MemStats
    	runtime.ReadMemStats(&ms1)
    
    	// Make periodic GC run continuously.
    	orig := *runtime.ForceGCPeriod
    	*runtime.ForceGCPeriod = 0
    
    	// Let some periodic GCs happen. In a heavily loaded system,
    	// it's possible these will be delayed, so this is designed to
    	// succeed quickly if things are working, but to give it some
    	// slack if things are slow.
    	var numGCs uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. Makefile.core.mk

    endif
    
    PULL_POLICY ?= IfNotPresent
    ifeq ($(TAG),latest)
      PULL_POLICY = Always
    endif
    ifeq ($(PULL_POLICY),)
      $(error "PULL_POLICY cannot be empty")
    endif
    
    PROW_ARTIFACTS_BASE ?= https://gcsweb.istio.io/gcs/istio-prow
    
    include tools/proto/proto.mk
    
    .PHONY: default
    default: init build test
    
    .PHONY: init
    # Downloads envoy, based on the SHA defined in the base pilot Dockerfile
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/sync/pool.go

    	s := p.localSize
    	l := p.local
    	if uintptr(pid) < s {
    		return indexLocal(l, pid), pid
    	}
    	if p.local == nil {
    		allPools = append(allPools, p)
    	}
    	// If GOMAXPROCS changes between GCs, we re-allocate the array and lose the old one.
    	size := runtime.GOMAXPROCS(0)
    	local := make([]poolLocal, size)
    	atomic.StorePointer(&p.local, unsafe.Pointer(&local[0])) // store-release
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. settings.gradle.kts

        subproject("maven")
        subproject("platform-base")
        subproject("plugins-version-catalog")
        subproject("publish")
        subproject("resources")
        subproject("resources-http")
        subproject("resources-gcs")
        subproject("resources-s3")
        subproject("resources-sftp")
        subproject("reporting")
        subproject("security")
        subproject("signing")
        subproject("testing-base")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. build/dependencies.yaml

          match: app.kubernetes.io/version
        # TODO(dims): Ensure newer versions get uploaded to
        # - https://console.cloud.google.com/storage/browser/gke-release/winnode/node-problem-detector
        # - https://gcsweb.k8s.io/gcs/kubernetes-release/node-problem-detector/
        # and then the following references get fixed.
        #
        - path: cluster/gce/gci/configure.sh
          match: DEFAULT_NPD_VERSION=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    		obj.Status.(*kstatus.WrappedStatus).Mutate(func(s config.Status) config.Status {
    			gcs := s.(*k8s.GatewayClassStatus)
    			*gcs = GetClassStatus(gcs, obj.Generation)
    			gcs.SupportedFeatures = supportedFeatures
    			return gcs
    		})
    	}
    
    	return res
    }
    
    // parentKey holds info about a parentRef (eg route binding to a Gateway). This is a mirror of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// heapAlloc includes unmarked objects that have not yet been swept (and
    	// hence goes up as we allocate and down as we sweep) while heapLive
    	// excludes these objects (and hence only goes up between GCs).
    	//
    	// To reduce contention, this is updated only when obtaining a span
    	// from an mcentral and at this point it counts all of the unallocated
    	// slots in that span (which will be allocated before that mcache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top