Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 182 for netutils (0.17 sec)

  1. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.pom

              </execution>
            </executions>
          </plugin>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>**/testutils/**</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.testutils;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    
    import org.codehaus.plexus.util.FileUtils;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

            file("src/main/java/com/example/main/Main.java") << """
    package com.example.main;
    
    import com.example.util.Util;
    
    public class Main {
        public String getValue() {
            return "main " + Util.getUtil();
        }
    }
    """
    
            and:
            file("direct/build.gradle") << """
    import aQute.bnd.gradle.BundleTaskExtension
    
    plugins {
        id "java-library"
    }
    
    group = "com.example.util"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/config.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/hash"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Statically link protobuf descriptors from UDPA
    var _ = udpa.TypedStruct{}
    
    type ConfigHash uint64
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/apiclient/wait.go

    	"time"
    
    	"github.com/pkg/errors"
    
    	v1 "k8s.io/api/core/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	netutil "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/wait"
    	clientset "k8s.io/client-go/kubernetes"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/InitialPassStatementTransformer.java

        }
    
        @Override
        public Statement transform(SourceUnit sourceUnit, Statement statement) {
            ScriptBlock scriptBlock = AstUtils.detectScriptBlock(statement, scriptBlockNames);
            if (scriptBlock == null) {
                seenNonClasspathStatement = true;
                return null;
            }
    
            if (scriptBlock.getName().equals(PLUGINS)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 11:25:50 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/network.go

    	"github.com/miekg/dns"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/istiomultierror"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // NetworkGateway is the gateway of a network
    type NetworkGateway struct {
    	// Network is the ID of the network where this Gateway resides.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. pkg/dns/client/dns.go

    	"github.com/google/uuid"
    	"github.com/miekg/dns"
    
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/config/host"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    	istiolog "istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var log = istiolog.RegisterScope("dns", "Istio DNS proxy")
    
    // LocalDNSServer holds configurations for the DNS downstreamUDPServer in Istio Agent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/label"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/security"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Constants for duration fields
    const (
    	// Set some high upper bound to avoid weird configurations
    	// nolint: revive
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage.go

    	svcreg "k8s.io/kubernetes/pkg/registry/core/service"
    	"k8s.io/kubernetes/pkg/registry/core/service/ipallocator"
    	"k8s.io/kubernetes/pkg/registry/core/service/portallocator"
    	netutil "k8s.io/utils/net"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    type EndpointsStorage interface {
    	rest.Getter
    	rest.GracefulDeleter
    }
    
    type PodStorage interface {
    	rest.Getter
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top