Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 100 for startm (0.14 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    		fakeRecorder:         fakeRecorder,
    	}
    
    	_, err = client.CoreV1().Nodes().Create(context.Background(), newNode("master-0", nil), metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	f.Start(ctx.Done())
    	for ty, ok := range f.WaitForCacheSync(ctx.Done()) {
    		if !ok {
    			t.Fatalf("caches failed to sync: %v", ty)
    		}
    	}
    
    	expectStableQueueLength(0)
    
    	oldDS := newDaemonSet("test")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    func ValidateUnixAddress(addr string) error {
    	if len(addr) == 0 {
    		return errors.New("unix address must not be empty")
    	}
    
    	// Allow unix abstract domain sockets whose names start with @
    	if strings.HasPrefix(addr, "@") {
    		return nil
    	}
    
    	// Note that we use path, not path/filepath even though a domain socket path is a file path.  We don't want the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

              try {
                sleep(delay)
              } catch (e: InterruptedException) {
                throw AssertionError()
              }
              call.cancel()
            }
          }
        thread.start()
        return thread
      }
    
      private fun socketFactoryWithCipherSuite(
        sslSocketFactory: SSLSocketFactory,
        cipherSuite: CipherSuite,
      ): SSLSocketFactory {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-gc-stress.test

    	data="GC mark termination"
    String id=22
    	data="runtime.traceAdvance"
    String id=23
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go"
    String id=24
    	data="runtime.(*traceAdvancerState).start.func1"
    String id=25
    	data="runtime.gcAssistAlloc"
    String id=26
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcmark.go"
    String id=27
    	data="runtime.deductAssistCredit"
    String id=28
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

      /** Factory used to create new entries. */
      final EntryFactory entryFactory;
    
      /**
       * Accumulates global cache statistics. Note that there are also per-segments stats counters which
       * must be aggregated to obtain a global stats view.
       */
      final StatsCounter globalStatsCounter;
    
      /** The default cache loader to use on loading operations. */
      @CheckForNull final CacheLoader<? super K, V> defaultLoader;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	s.testServer.cancel = cancel
    	s.testServer = initTestServerWithBackend(ctx, c, s.testServer, s.testServer.Obj, s.testServer.rawDiskPaths)
    	if s.secure {
    		s.testServer.Server.StartTLS()
    	} else {
    		s.testServer.Server.Start()
    	}
    
    	s.client = s.testServer.Server.Client()
    	s.endPoint = s.testServer.Server.URL
    }
    
    func (s *TestSuiteCommon) TearDownSuite(c *check) {
    	s.testServer.Stop()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			// Build a PriorityQueue.
    			q := NewPriorityQueue(newDefaultQueueSort(), informerFactory, WithPodLister(podLister))
    			ctx, cancel := context.WithCancel(context.Background())
    			defer cancel()
    			informerFactory.Start(ctx.Done())
    			informerFactory.WaitForCacheSync(ctx.Done())
    
    			if tt.deletePod {
    				// Simulate that the test pod gets deleted physically.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			minRange := i - 5
    			maxRange := i + 5
    			if minRange < 0 {
    				minRange = 0
    			}
    			if maxRange > len(lines) {
    				maxRange = len(lines)
    			}
    			panic(fmt.Errorf("line %d doesn't start with expected number (%d) of tabs (%v-%v):\n%v", i, len(prefix), minRange, maxRange, string(bytes.Join(lines[minRange:maxRange], []byte{'\n'}))))
    		}
    		lines[i] = line[len(prefix):]
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    //
    // which means that Yi0, Yi1, and Yi8 all count as Ys32 (signed 32)
    // if that's what an instruction can handle.
    //
    // In parallel with the scan through the ytable for the appropriate line, there
    // is a z pointer that starts out pointing at the strange magic byte list in
    // the Optab struct.  With each step past a non-matching ytable line, z
    // advances by the 4th entry in the line.  When a matching line is found, that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    				s = r
    			case *ValueError:
    				s = r.Error()
    			default:
    				panic(fmt.Sprintf("panicked with unexpected type %T", r))
    			}
    			if !strings.HasPrefix(s, "reflect") {
    				panic(`panic string does not start with "reflect": ` + s)
    			}
    			if !strings.Contains(s, expect) {
    				panic(`panic string does not contain "` + expect + `": ` + s)
    			}
    		}
    	}()
    	f()
    }
    
    func isNonNil(x any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top