Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 381 for g$ (0.03 sec)

  1. manifests/addons/dashboards/lib/g.libsonnet

    John Howard <******@****.***> 1717524306 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 74 bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/dashboard.libsonnet

    local g = import 'g.libsonnet';
    
    local variables = import './variables.libsonnet';
    
    {
      new(name):
        g.dashboard.new(name)
        + g.dashboard.graphTooltip.withSharedCrosshair()
        + g.dashboard.withRefresh('15s')
        + g.dashboard.time.withFrom('now-30m')
        + g.dashboard.time.withTo('now')
        + g.dashboard.withVariables([variables.datasource]),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 354 bytes
    - Viewed (0)
  3. pkg/test/framework/suite_test.go

    		g.Expect(err).To(BeNil())
    		g.Expect(ref).To(HaveLen(2))
    		g.Expect(existing).To(Equal(ref[0]))
    		g.Expect(tracked).To(Equal(ref[1]))
    	})
    	t.Run("non pointer ref", func(t *testing.T) {
    		g := NewWithT(t)
    		err := act(resource.FakeResource{}, &resource.FakeResource{})
    		g.Expect(err).NotTo(BeNil())
    	})
    }
    
    func TestDeriveSuiteName(t *testing.T) {
    	cases := []struct {
    		caller   string
    		expected string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/kubelet/pleg/generic.go

    // TODO: support multiple subscribers.
    func (g *GenericPLEG) Watch() chan *PodLifecycleEvent {
    	return g.eventChannel
    }
    
    // Start spawns a goroutine to relist periodically.
    func (g *GenericPLEG) Start() {
    	g.runningMu.Lock()
    	defer g.runningMu.Unlock()
    	if !g.isRunning {
    		g.isRunning = true
    		g.stopCh = make(chan struct{})
    		go wait.Until(g.Relist, g.relistDuration.RelistPeriod, g.stopCh)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/internal/trace/generation.go

    	g.stacks.compactify()
    	g.strings.compactify()
    
    	// Validate stacks.
    	if err := validateStackStrings(&g.stacks, &g.strings, g.pcs); err != nil {
    		return nil, nil, err
    	}
    
    	// Fix up the CPU sample timestamps, now that we have freq.
    	for i := range g.cpuSamples {
    		s := &g.cpuSamples[i]
    		s.time = g.freq.mul(timestamp(s.time))
    	}
    	// Sort the CPU samples.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_test.go

    	for _, g := range golden {
    		if crc := crcFunc([]byte(g.in)); crc != g.ieee {
    			t.Errorf("IEEE(%s) = 0x%x want 0x%x", g.in, crc, g.ieee)
    		}
    	}
    }
    
    // testGoldenCastagnoli verifies that the given function returns
    // correct IEEE checksums.
    func testGoldenCastagnoli(t *testing.T, crcFunc func(b []byte) uint32) {
    	for _, g := range golden {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-kubeapiserver.sh

      sed -i -e "s@{{pillar\['kube-apiserver_docker_tag'\]}}@${kube_apiserver_docker_tag}@g" "${src_file}"
      sed -i -e "s@{{pillar\['allow_privileged'\]}}@true@g" "${src_file}"
      sed -i -e "s@{{liveness_probe_initial_delay}}@${KUBE_APISERVER_LIVENESS_PROBE_INITIAL_DELAY_SEC:-15}@g" "${src_file}"
      sed -i -e "s@{{secure_port}}@443@g" "${src_file}"
      sed -i -e "s@{{insecure_port_mapping}}@${INSECURE_PORT_MAPPING}@g" "${src_file}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_test.go

    					g.Expect(thresholds.MaxConnections).NotTo(BeNil())
    					g.Expect(thresholds.MaxConnections.Value).To(Equal(uint32(expected.Tcp.MaxConnections)))
    
    					// and HTTP settings
    					g.Expect(thresholds.MaxPendingRequests.Value).To(Equal(uint32(expected.Http.Http1MaxPendingRequests)))
    					g.Expect(thresholds.MaxRequests).NotTo(BeNil())
    					g.Expect(thresholds.MaxRequests.Value).To(Equal(uint32(expected.Http.Http2MaxRequests)))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            []                   | []                   | ["g"]                                     | true
            []                   | []                   | ["h"]                                     | true
            ["b", "c", "f", "g"] | []                   | ["b", "c", "f", "g"]                      | true
            []                   | ["b", "c", "f", "g"] | ["b", "c", "f", "g"]                      | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest-generate_test.go

    		t.Fatal(err)
    	}
    
    	for _, objs := range objss {
    		g.Expect(objs.kind(name.HPAStr).size()).Should(Equal(3))
    		g.Expect(objs.kind(name.PDBStr).size()).Should(Equal(3))
    		g.Expect(objs.kind(name.ServiceStr).labels("istio=ingressgateway").size()).Should(Equal(3))
    		g.Expect(objs.kind(name.RoleStr).nameMatches(".*gateway.*").size()).Should(Equal(3))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top