Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 217 for Potato (0.1 sec)

  1. releasenotes/notes/24554.yaml

    kind: feature
    area: security
    issue:
      - 24554
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 264 bytes
    - Viewed (0)
  2. pilot/pkg/config/aggregate/config_test.go

    			GroupVersionKind: gvk.GatewayClass,
    			Name:             "other",
    		},
    	}
    
    	_, err := store1.Create(*configReturn)
    	g.Expect(err).NotTo(HaveOccurred())
    
    	stores := []model.ConfigStore{store1, store2}
    
    	store, err := makeStore(stores, nil)
    	g.Expect(err).NotTo(HaveOccurred())
    
    	c := store.Get(gvk.GatewayClass, "other", "")
    	g.Expect(c.Name).To(Equal(configReturn.Name))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. test/rotate3.go

    // runoutput ./rotate.go
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Generate test of bit rotations.
    // The output is compiled and run.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 286 bytes
    - Viewed (0)
  4. internal/logger/logrotate.go

    			stdErrEnc.Encode(&log.Entry{
    				Level:   ErrorKind,
    				Message: msg,
    				Time:    time.Now().UTC(),
    				Trace:   &log.Trace{Message: msg},
    			})
    		}
    		if err := w.rotate(); err != nil {
    			msg := fmt.Sprintf("unable to rotate log file %v: %v", w.f.Name(), err)
    			stdErrEnc.Encode(&log.Entry{
    				Level:   ErrorKind,
    				Message: msg,
    				Time:    time.Now().UTC(),
    				Trace:   &log.Trace{Message: msg},
    			})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    		xdstest.ValidateRoutes(t, routes)
    		g.Expect(err).NotTo(HaveOccurred())
    		g.Expect(len(routes)).To(Equal(1))
    
    		r := routes[0]
    		routeAction, ok := r.GetAction().(*envoyroute.Route_Route)
    		g.Expect(ok).NotTo(BeFalse())
    
    		weightedCluster := routeAction.Route.GetWeightedClusters()
    		g.Expect(weightedCluster).NotTo(BeNil())
    		g.Expect(len(weightedCluster.GetClusters())).To(Equal(2))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  6. pkg/kubelet/logs/container_log_manager.go

    	klog.InfoS("Initializing container log rotate workers", "workers", c.maxWorkers, "monitorPeriod", c.monitoringPeriod)
    	for i := 0; i < c.maxWorkers; i++ {
    		worker := i + 1
    		go c.processQueueItems(ctx, worker)
    	}
    	// Start a goroutine periodically does container log rotation.
    	go wait.Forever(func() {
    		if err := c.rotateLogs(ctx); err != nil {
    			klog.ErrorS(err, "Failed to rotate container logs")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. docs_src/async_tests/test_main.py

    @pytest.mark.anyio
    async def test_root():
        async with AsyncClient(app=app, base_url="http://test") as ac:
            response = await ac.get("/")
        assert response.status_code == 200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Oct 06 15:32:11 UTC 2021
    - 306 bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Bytes.java

       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Bytes.asList(array),
       * distance)}, but is somewhat faster.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @since 32.0.0
       */
      public static void rotate(byte[] array, int distance) {
        rotate(array, distance, 0, array.length);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. test/rotate0.go

    // runoutput ./rotate.go
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Generate test of bit rotations.
    // The output is compiled and run.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 286 bytes
    - Viewed (0)
  10. test/rotate1.go

    // runoutput ./rotate.go
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Generate test of bit rotations.
    // The output is compiled and run.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 286 bytes
    - Viewed (0)
Back to top