Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 205 for utiltest (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net"
    	"net/http"
    	"net/url"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/third_party/forked/golang/netutil"
    	"k8s.io/klog/v2"
    )
    
    // DialURL will dial the specified URL using the underlying dialer held by the passed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/cpp/cppUnitTest/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        `cpp-unit-test`
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    unitTest {
        targetMachines = listOf(machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 301 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses_test.go

    limitations under the License.
    */
    
    package discovery
    
    import (
    	"net/http"
    	"reflect"
    	"testing"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	netutils "k8s.io/utils/net"
    )
    
    func TestGetServerAddressByClientCIDRs(t *testing.T) {
    	publicAddressCIDRMap := []metav1.ServerAddressByClientCIDR{
    		{
    			ClientCIDR:    "0.0.0.0/0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. pkg/proxy/conntrack/conntrack.go

    limitations under the License.
    */
    
    package conntrack
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/exec"
    	utilnet "k8s.io/utils/net"
    )
    
    // Interface for dealing with conntrack
    type Interface interface {
    	// ClearEntriesForIP deletes conntrack entries for connections of the given
    	// protocol, to the given IP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/project.xml

      <build>
        <nagEmailAddress>******@****.***</nagEmailAddress>
        <sourceDirectory>/sourceDirectory</sourceDirectory>
        <unitTestSourceDirectory>/unitTestSourceDirectory</unitTestSourceDirectory>
        <unitTest>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <excludes>
            <exclude>**/RepositoryTest.java</exclude>
            <exclude>**/JAXPTest.java</exclude>
          </excludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook.go

    package webhook
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"go.opentelemetry.io/otel/attribute"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/wait"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/apis/audit/install"
    	"k8s.io/apiserver/pkg/audit"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:13:31 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go

    package discovery
    
    import (
    	"net/http"
    
    	"github.com/emicklei/go-restful/v3"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apiserver/pkg/endpoints/handlers/negotiation"
    	"k8s.io/apiserver/pkg/endpoints/handlers/responsewriters"
    )
    
    // legacyRootAPIHandler creates a webservice serving api group discovery.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 22:44:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/binary/BaseBinarySpecTest.groovy

            def binary = create(SampleBinary, MySampleBinary, "unitTest", component)
    
            expect:
            binary.name == "unitTest"
            binary.projectScopedName == "sampleUnitTest"
            binary.displayName == "SampleBinary 'sample:unitTest'"
            binary.namingScheme.description == "sample binary 'sample:unitTest'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/projects/fully-populated-child.xml

      <build>
        <nagEmailAddress>******@****.***</nagEmailAddress>
        <sourceDirectory>/sourceDirectory</sourceDirectory>
        <unitTestSourceDirectory>/unitTestSourceDirectory</unitTestSourceDirectory>
        <unitTest>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <excludes>
            <exclude>**/RepositoryTest.java</exclude>
            <exclude>**/JAXPTest.java</exclude>
          </excludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.7K bytes
    - Viewed (0)
  10. pkg/registry/core/componentstatus/validator.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package componentstatus
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"sync"
    	"time"
    
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    	"k8s.io/apiserver/pkg/storage/storagebackend/factory"
    	"k8s.io/kubernetes/pkg/probe"
    	httpprober "k8s.io/kubernetes/pkg/probe/http"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 13:08:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top