Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for main2 (0.04 sec)

  1. cmd/test-utils_test.go

    	// Add Content-Length
    	req.ContentLength = contentLength
    
    	return req, nil
    }
    
    // Various signature types we are supporting, currently
    // two main signature types.
    type signerType int
    
    const (
    	signerV2 signerType = iota
    	signerV4
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    			xds.StatsFilterName,
    			wellknown.TCPProxy,
    		}
    		verifyInboundFilterChains(t, l, httpFilters, httpNetworkFilters, tcpNetworkFilters)
    		// verifyInboundFilterChains only checks the passthrough. Ensure the main filters get created as expected, too.
    		listenertest.VerifyListener(t, l, listenertest.ListenerTest{
    			FilterChains: []listenertest.FilterChainTest{
    				{
    					Name:           "0.0.0.0_8080",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    	jm.updateStatusHandler = jm.updateJobStatus
    	jm.patchJobHandler = jm.patchJob
    	jm.syncHandler = jm.syncJob
    
    	metrics.Register()
    
    	return jm, nil
    }
    
    // Run the main goroutine responsible for watching and syncing jobs.
    func (jm *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	logger := klog.FromContext(ctx)
    
    	// Start events processing pipeline.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// physPageAlignedStacks indicates whether stack allocations must be
    	// physical page aligned. This is a requirement for MAP_STACK on
    	// OpenBSD.
    	physPageAlignedStacks = GOOS == "openbsd"
    )
    
    // Main malloc heap.
    // The heap itself is the "free" and "scav" treaps,
    // but all the other global data is here too.
    //
    // mheap must not be heap-allocated because it contains mSpanLists,
    // which must not be heap-allocated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/os/os_test.go

    			// the original working directory.
    			panic(err)
    		}
    	}()
    
    	// Note the deferred Wait must be called after the deferred close(done),
    	// to ensure the N goroutines have been released even if the main goroutine
    	// calls Fatalf. It must be called before the Chdir back to the original
    	// directory, and before the deferred deletion implied by TempDir,
    	// so as not to interfere while the N goroutines are still running.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top