Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for anp1 (0.04 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"audio/vnd.4sb",
    				"audio/vnd.audiokoz",
    				"audio/vnd.adobe.soundbooth",
    				"audio/vnd.celp",
    				"audio/vnd.cisco.nse",
    				"audio/vnd.cmles.radio-events",
    				"audio/vnd.cns.anp1",
    				"audio/vnd.cns.inf1",
    				"audio/vnd.digital-winds",
    				"audio/vnd.dlna.adts",
    				"audio/vnd.dolby.heaac.1",
    				"audio/vnd.dolby.heaac.2",
    				"audio/vnd.dolby.mlp",
    				"audio/vnd.dolby.mps",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. pilot/pkg/xds/xds_cache_test.go

    		c := model.NewXdsCache()
    		c.Add(ep1, &model.PushRequest{Start: time.Now()}, any1)
    		if !reflect.DeepEqual(c.Keys(model.EDSType), []any{ep1.Key()}) {
    			t.Fatalf("unexpected keys: %v, want %v", c.Keys(model.EDSType), ep1.Key())
    		}
    		if got := c.Get(ep1); got != any1 {
    			t.Fatalf("unexpected result: %v, want %v", got, any1)
    		}
    		c.Add(ep1, &model.PushRequest{Start: time.Now()}, any2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

            expect:
            def generateManifest = project.tasks['generateSwiftPmManifest']
            def products = generateManifest.package.get().products
            products.name == ["app1", "app2"]
            products.target.name == ["app1", "app2"]
            products.target.publicHeaderDir == [null, null]
            products.every { it instanceof DefaultExecutableProduct }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. test/typeparam/issue49893.dir/b.go

    // Copyright 2021 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 b
    
    import "./a"
    
    type Ap1[A, B any] struct {
    	opt a.Option[A]
    }
    
    type Ap2[A, B any] struct {
    	opt a.Option[A]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 280 bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway_test.go

    			wantPortNumber: 80,
    			wantPortName:   "",
    			wantGateway:    "",
    		},
    		{
    			name:           "https rds name",
    			args:           args{"https.443.app1.gw1.ns1"},
    			wantPortNumber: 443,
    			wantPortName:   "app1",
    			wantGateway:    "ns1/gw1",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. internal/bucket/versioning/versioning_test.go

    		t.Fatalf("Invalid test versioning config %v: %v", v, err)
    	}
    	tests := []struct {
    		prefix   string
    		excluded bool
    	}{
    		{
    			prefix:   "app1-jobs/output/_temporary/attempt1/data.csv",
    			excluded: true,
    		},
    		{
    			prefix:   "app1-jobs/output/final/attempt1/data.csv",
    			excluded: false,
    		},
    	}
    
    	for i, test := range tests {
    		if v.PrefixSuspended(test.prefix) != test.excluded {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 08 05:06:44 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformParallelIntegrationTest.groovy

        }
    
        def "only one transformer execution per workspace"() {
    
            createDirs("lib", "app1", "app2")
            settingsFile << """
                include "lib", "app1", "app2"
            """
    
            buildFile << """
                project(":lib") {
                    dependencies {
                        compile files("lib1.jar")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. test/typeparam/issue49893.dir/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./b"
    	"fmt"
    )
    
    func main() {
    	opt := b.Ap1[string, string]{}
    	fmt.Println(opt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 266 bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            ['C:\\', 'D:\\', 'E:\\'] | 'F:\\any'         | false
            ['C:\\', 'C:\\any']      | 'C:\\any\\thing'  | true
            ['C:\\', 'C:\\any']      | 'E:\\any\\thing'  | false
            ['C:\\any1', 'D:\\any2'] | 'C:\\any1\\thing' | true
            ['C:\\any1', 'D:\\any2'] | 'D:\\any2\\thing' | true
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
        def 'can handle complicated roots'() {
            expect:
            rootsOf(from([
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    							RouteConfiguration: &networking.EnvoyFilter_RouteConfigurationMatch{
    								PortNumber: 443,
    								PortName:   "app1",
    								Gateway:    "ns1/gw1",
    							},
    						},
    					},
    				},
    				rc: &route.RouteConfiguration{Name: "https.443.app1.gw1.ns1"},
    			},
    			want: true,
    		},
    		{
    			name: "gateway fields mismatch",
    			args: args{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top