Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for utiltest (0.24 sec)

  1. pkg/scheduler/extender.go

    			cfg.Insecure = true
    		}
    	}
    	tlsConfig, err := restclient.TLSConfigFor(&cfg)
    	if err != nil {
    		return nil, err
    	}
    	if tlsConfig != nil {
    		return utilnet.SetTransportDefaults(&http.Transport{
    			TLSClientConfig: tlsConfig,
    		}), nil
    	}
    	return utilnet.SetTransportDefaults(&http.Transport{}), nil
    }
    
    // NewHTTPExtender creates an HTTPExtender object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/config.go

    func CreateProxyTransport() *http.Transport {
    	var proxyDialerFn utilnet.DialFunc
    	// Proxying to pods and services is IP-based... don't expect to be able to verify the hostname
    	proxyTLSClientConfig := &tls.Config{InsecureSkipVerify: true}
    	proxyTransport := utilnet.SetTransportDefaults(&http.Transport{
    		DialContext:     proxyDialerFn,
    		TLSClientConfig: proxyTLSClientConfig,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                    }
                }
            """
    
            file('src/test/java/example/UnitTest.java') << '''
                package example;
    
                import org.junit.Assert;
                import org.junit.Test;
    
                public class UnitTest {
                    @Test
                    public void unitTest() {
                        Assert.assertTrue(true);
                    }
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/validation_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"net"
    	"testing"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	apiserveroptions "k8s.io/apiserver/pkg/server/options"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        return 0;  // Return value used only to run this method in namespace scope.
      }
      // UnitTest class invokes this method to register tests in this test case
      // test cases right before running tests in RUN_ALL_TESTS macro.
      // This method should not be called more then once on any single
      // instance of a ParameterizedTestCaseInfoBase derived class.
      // UnitTest has a guard to prevent from calling this method more then once.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        return 0;  // Return value used only to run this method in namespace scope.
      }
      // UnitTest class invokes this method to register tests in this test case
      // test cases right before running tests in RUN_ALL_TESTS macro.
      // This method should not be called more then once on any single
      // instance of a ParameterizedTestCaseInfoBase derived class.
      // UnitTest has a guard to prevent from calling this method more then once.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  7. pkg/proxy/endpointslicecache.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	utilnet "k8s.io/utils/net"
    )
    
    // EndpointSliceCache is used as a cache of EndpointSlice information.
    type EndpointSliceCache struct {
    	// lock protects trackerByServiceMap.
    	lock sync.Mutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  8. pkg/kubeapiserver/authenticator/config.go

    limitations under the License.
    */
    
    package authenticator
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"sync/atomic"
    	"time"
    
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/apis/apiserver"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/authenticatorfactory"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	validRequestMethods = utilsets.NewString(
    		"APPLY",
    		"CONNECT",
    		"CREATE",
    		"DELETE",
    		"DELETECOLLECTION",
    		"GET",
    		"LIST",
    		"PATCH",
    		"POST",
    		"PROXY",
    		"PUT",
    		"UPDATE",
    		"WATCH",
    		"WATCHLIST")
    
    	// These are the valid connect requests which we report in our metrics.
    	validConnectRequests = utilsets.NewString(
    		"log",
    		"exec",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    import (
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    	"time"
    
    	"github.com/spf13/pflag"
    	"gopkg.in/natefinch/lumberjack.v2"
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/sets"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	auditv1 "k8s.io/apiserver/pkg/apis/audit/v1"
    	"k8s.io/apiserver/pkg/audit"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
Back to top