Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 147 for onetmp (0.14 sec)

  1. pkg/dns/client/dns.go

    // calls the passed in function with the built alternate hosts.
    func (h *LocalDNSServer) BuildAlternateHosts(nt *dnsProto.NameTable,
    	apply func(map[string]struct{}, []netip.Addr, []netip.Addr, []string),
    ) {
    	for hostname, ni := range nt.Table {
    		// Given a host
    		// if its a non-k8s host, store the host+. as the key with the pre-computed DNS RR records
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <sub-class-of type="application/ogg"/>
      </mime-type>
      <mime-type type="application/onenote">
        <alias type="application/msonenote"/>
        <acronym>OneNote</acronym>
        <glob pattern="*.onetmp"/>
      </mime-type>
      <mime-type type="application/onenote;format=one">
        <glob pattern="*.one"/>
        <magic priority="50">
          <!-- GUID {7B5C52E4-D88C-4DA7-AEB1-5378D02996D3} -->
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  3. security/pkg/pki/util/san.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"fmt"
    	"net/netip"
    	"strings"
    
    	"istio.io/istio/pkg/spiffe"
    )
    
    // IdentityType represents type of an identity. This is used to properly encode
    // an identity into a SAN extension.
    type IdentityType int
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package authenticate
    
    import (
    	"context"
    	"net"
    	"net/http"
    	"net/netip"
    	"reflect"
    	"strings"
    	"testing"
    
    	"github.com/alecholmes/xfccparser"
    	"google.golang.org/grpc/metadata"
    	"google.golang.org/grpc/peer"
    
    	"istio.io/istio/pkg/security"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. security/pkg/pki/util/san_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"net/netip"
    	"reflect"
    	"testing"
    )
    
    func getSANExtension(identites []Identity, t *testing.T) *pkix.Extension {
    	ext, err := BuildSANExtension(identites)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/net/netip/uint128_test.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package netip
    
    import (
    	"testing"
    )
    
    func TestUint128AddSub(t *testing.T) {
    	const add1 = 1
    	const sub1 = -1
    	tests := []struct {
    		in   uint128
    		op   int // +1 or -1 to add vs subtract
    		want uint128
    	}{
    		{uint128{0, 0}, add1, uint128{0, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 02 01:28:01 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    		if len(m) == 0 {
    			continue
    		}
    
    		var (
    			ipAddr        netip.Addr
    			maxCidrPrefix uint32
    		)
    
    		if strings.Contains(m, "/") {
    			ipp, err := netip.ParsePrefix(m)
    			if err != nil {
    				continue
    			}
    			ipAddr = ipp.Addr()
    			maxCidrPrefix = uint32(ipp.Bits())
    		} else {
    			ipa, err := netip.ParseAddr(m)
    			if err != nil {
    				continue
    			}
    
    			ipAddr = ipa
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. pkg/test/echo/server/instance.go

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package server
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"net/http"
    	"net/netip"
    	"os"
    	"strings"
    	"sync"
    	"sync/atomic"
    
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // nolint: gocritic
    package ambient
    
    import (
    	"net/netip"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/label"
    	networkingv1alpha3 "istio.io/api/networking/v1alpha3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerTest.java

        @Mock
        private ToolchainFactory toolchainFactory_basicType;
    
        @Mock
        private ToolchainFactory toolchainFactory_rareType;
    
        @BeforeEach
        void onSetup() throws Exception {
            MockitoAnnotations.initMocks(this);
    
            Map<String, ToolchainFactory> factories = new HashMap<>();
            factories.put("basic", toolchainFactory_basicType);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 16 12:54:16 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top