Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for qsub (0.25 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            throws Exception
        {
            PomTestWrapper pom = buildPom( "dependency-scope/sub" );
    
        }*/
    
        /*MNG- 4010*/
        @Test
        void testDuplicateExclusionsDependency() throws Exception {
            PomTestWrapper pom = buildPom("duplicate-exclusions-dependency/sub");
            assertEquals(1, ((List<?>) pom.getValue("dependencies[1]/exclusions")).size());
        }
    
        /*MNG- 4008*/
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	SUB	$0x000aaa, R2, R3               // SUB $2730, R2, R3                      // 43a82ad1
    	SUB	$0x000aaa, R2                   // SUB $2730, R2                          // 42a82ad1
    	SUB	$0xaaa000, R2, R3               // SUB $11182080, R2, R3                  // 43a86ad1
    	SUB	$0xaaa000, R2                   // SUB $11182080, R2                      // 42a86ad1
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm.s

    	SUB	R0->28, R1           // 401e41e0
    	SUB	R0@>28, R1           // 601e41e0
    	SUB.S	R0<<28, R1           // 001e51e0
    	SUB.S	R0>>28, R1           // 201e51e0
    	SUB.S	R0->28, R1           // 401e51e0
    	SUB.S	R0@>28, R1           // 601e51e0
    	SUB	R0<<R1, R2, R3       // 103142e0
    	SUB	R0>>R1, R2, R3       // 303142e0
    	SUB	R0->R1, R2, R3       // 503142e0
    	SUB	R0@>R1, R2, R3       // 703142e0
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    			}
    		}
    		t.Go = name
    		t.BadPointer = sub.BadPointer
    		if unionWithPointer[sub.Go] {
    			unionWithPointer[t.Go] = true
    		}
    		t.Size = sub.Size
    		t.Align = sub.Align
    		oldType := typedef[name.Name]
    		if oldType == nil {
    			tt := *t
    			tt.Go = sub.Go
    			tt.BadPointer = sub.BadPointer
    			typedef[name.Name] = &tt
    		}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. cmd/iam.go

    		if err := saveIAMFormat(retryCtx, sys.store); err != nil {
    			if configRetriableErrors(err) {
    				logger.Info("Waiting for all MinIO IAM sub-system to be initialized.. possible cause (%v)", err)
    				time.Sleep(time.Duration(r.Float64() * float64(time.Second)))
    				continue
    			}
    			iamLogIf(ctx, fmt.Errorf("IAM sub-system is partially initialized, unable to write the IAM format: %w", err), logger.WarningKind)
    			return
    		}
    
    		break
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 18 19:09:19 GMT 2024
    - 69.9K bytes
    - Viewed (1)
  6. src/cmd/asm/internal/asm/testdata/ppc64.s

    	FMOVDCC F1, F2                  // fc400891
    	FADDS F1, F2                    // ec42082a
    	FADDS F1, F2, F3                // ec62082a
    	FADDSCC F1, F2, F3              // ec62082b
    	FSUB F1, F2                     // fc420828
    	FSUB F1, F2, F3                 // fc620828
    	FSUBCC F1, F2, F3               // fc620829
    	FSUBS F1, F2                    // ec420828
    	FSUBS F1, F2, F3                // ec620828
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 01 18:50:29 GMT 2024
    - 48.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        class BaseWithTypeVar<T> {}
        class Outer<O> {
          class Sub<X> extends BaseWithTypeVar<List<X>> {}
    
          class Sub2<Y extends Sub2<Y>> extends BaseWithTypeVar<List<Y>> {}
        }
        ParameterizedType subtype =
            (ParameterizedType)
                new TypeToken<BaseWithTypeVar<List<?>>>() {}.getSubtype(Outer.Sub.class).getType();
        assertEquals(Outer.Sub.class, subtype.getRawType());
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/TypeToken.java

          // no resolution needed
          return subclass;
        }
        // class Base<A, B> {}
        // class Sub<X, Y> extends Base<X, Y> {}
        // Base<String, Integer>.subtype(Sub.class):
    
        // Sub<X, Y>.getSupertype(Base.class) => Base<X, Y>
        // => X=String, Y=Integer
        // => Sub<X, Y>=Sub<String, Integer>
        TypeToken<?> genericSubtype = toGenericType(subclass);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        class BaseWithTypeVar<T> {}
        class Outer<O> {
          class Sub<X> extends BaseWithTypeVar<List<X>> {}
    
          class Sub2<Y extends Sub2<Y>> extends BaseWithTypeVar<List<Y>> {}
        }
        ParameterizedType subtype =
            (ParameterizedType)
                new TypeToken<BaseWithTypeVar<List<?>>>() {}.getSubtype(Outer.Sub.class).getType();
        assertEquals(Outer.Sub.class, subtype.getRawType());
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  10. tests/test_generate_unique_id_function.py

            return item1, item2  # pragma: nocover
    
        @sub_router.post(
            "/subrouter",
            response_model=List[Item],
            responses={404: {"model": List[Message]}},
        )
        def post_subrouter(item1: Item, item2: Item):
            return item1, item2  # pragma: nocover
    
        router.include_router(sub_router)
        app.include_router(router, generate_unique_id_function=custom_generate_unique_id3)
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Jan 13 15:10:26 GMT 2024
    - 66.7K bytes
    - Viewed (0)
Back to top