Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for d1 (0.03 sec)

  1. cmd/endpoint_test.go

    		// // It is valid WRT endpoint list that same path is expected with different port on same server.
    		{[]string{"https://127.0.0.1:9000/d1", "https://127.0.0.1:9001/d1", "https://127.0.0.1:9002/d1", "https://127.0.0.1:9003/d1"}, nil},
    		{[]string{"d1", "d2", "d3", "d1"}, fmt.Errorf("duplicate endpoints found")},
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Jan 13 07:53:03 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/FileOperationsTest.java

                    if ( !renamed && d1.exists() ) {
                        d1.delete();
                    }
                }
            }
        }
    
    
        @Test
        public void testCopyEmpty () throws IOException {
            try ( SmbFile f = createTestFile() ) {
                try ( SmbFile d1 = createTestDirectory();
                      SmbFile t = new SmbFile(d1, makeRandomName()) ) {
                    try {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:17:59 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            assertTrue(crawlingConfigHelper.getPipeline("W1").isEmpty());
            assertTrue(crawlingConfigHelper.getPipeline("F1").isEmpty());
            assertTrue(crawlingConfigHelper.getPipeline("D1").isEmpty());
            assertEquals("wp", crawlingConfigHelper.getPipeline("W1P").get());
            assertEquals("fp", crawlingConfigHelper.getPipeline("F1P").get());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64error.s

    	VREV64	V1.H4, V2.H8                                     // ERROR "invalid arrangement"
    	VREV64	V1.D1, V2.D1                                     // ERROR "invalid arrangement"
    	VREV16	V1.D1, V2.D1                                     // ERROR "invalid arrangement"
    	VREV16	V1.B8, V2.B16                                    // ERROR "invalid arrangement"
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	VLD1 (R24), [V18.D1, V19.D1, V20.D1]                        // 126f400c
    	VLD1 (R29), [V14.D1, V15.D1, V16.D1, V17.D1]                // ae2f400c
    	VLD1.P 16(R23), [V1.B16]                                    // e172df4c
    	VLD1.P (R6)(R11), [V31.D1]                                  // df7ccb0c
    	VLD1.P 16(R7), [V31.D1, V0.D1]                              // ffacdf0c
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arm64.go

    		case "S4":
    			if isIndex {
    				return errors.New("invalid register extension")
    			}
    			a.Reg = arm64.REG_ARNG + (reg & 31) + ((arm64.ARNG_4S & 15) << 5)
    		case "D1":
    			if isIndex {
    				return errors.New("invalid register extension")
    			}
    			a.Reg = arm64.REG_ARNG + (reg & 31) + ((arm64.ARNG_1D & 15) << 5)
    		case "D2":
    			if isIndex {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            ArtifactSpec d1 = c.addDependency("d", "1.0");
            ArtifactSpec b2 = c.addDependency("b", "2.0");
            ArtifactSpec e = b2.addDependency("e", "1.0");
            ArtifactSpec g = d1.addDependency("g", "1.0");
    
            ArtifactResolutionResult res = collect(createSet(new Object[] {a.artifact}));
            Object[] artifacts = new Object[] {a.artifact, c.artifact, d1.artifact, b2.artifact, e.artifact, g.artifact};
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    // not specify a namespace (i.e., `Namespace==""`) and clusterScope is
    // true or (d2) the request specifies a namespace and least one member
    // of namespaces matches the request's namespace.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. docs/ru/docs/async.md

    Пользователей очень много, но ваш сервер всё равно вынужден ждать 🕙 запросы по их слабому интернет-соединению.
    
    Потом снова ждать 🕙, пока вернётся ответ.
    
    <!--https://forum.wordreference.com/threads/%D0%9D%D0%BE-%D0%B5%D1%81%D0%BB%D0%B8.3258695/-->
    Это ожидание 🕙 измеряется микросекундами, но если всё сложить, то набегает довольно много времени.
    
    Вот почему есть смысл использовать асинхронное ⏸🔀⏯ программирование при построении веб-API.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v2_test.go

    				Algorithm:  HighwayHash256S,
    				Hash:       nil,
    			}},
    		},
    		MarkDeleted:      false,
    		Data:             data,
    		NumVersions:      1,
    		SuccessorModTime: time.Time{},
    	}
    
    	d0, d1, d2 := mustGetUUID(), mustGetUUID(), mustGetUUID()
    	testCases := []struct {
    		versionID        string
    		dataDir          string
    		data             []byte
    		shares           int
    		transitionStatus string
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top