Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,026 for NEW (0.05 sec)

  1. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ClientTest.groovy

        }
    
        def "should include uri when meta-data not found"() {
            AmazonS3Client amazonS3Client = Mock()
            URI uri = new URI("https://somehost/file.txt")
            S3Client s3Client = new S3Client(amazonS3Client, s3ConnectionProperties)
            AmazonS3Exception amazonS3Exception = new AmazonS3Exception("test exception")
            amazonS3Client.getObject(_) >> { throw amazonS3Exception }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            Build build = new Build();
            build.setDirectory(expected.substring(0, expected.length() - "/classes".length()));
    
            Model model = new Model();
            model.setBuild(build);
    
            MavenProject project = new MavenProject(model);
            project.setFile(new File("pom.xml").getCanonicalFile());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            final Map<String, Object> map = new HashMap<>();
            map.put(FieldNames.TEXT, StringUtil.EMPTY);
    
            for (int i = 0; i < readings.length; i++) {
                map.put(FieldNames.READING_PREFIX + i, new String[] {});
            }
    
            map.put(FieldNames.FIELDS, new String[] {});
            map.put(FieldNames.TAGS, new String[] {});
            map.put(FieldNames.ROLES, new String[] {});
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

        testSortDescending(new long[] {}, 0, 0, new long[] {});
        testSortDescending(new long[] {1}, 0, 1, new long[] {1});
        testSortDescending(new long[] {1, 2}, 0, 2, new long[] {2, 1});
        testSortDescending(new long[] {1, 3, 1}, 0, 2, new long[] {3, 1, 1});
        testSortDescending(new long[] {1, 3, 1}, 0, 1, new long[] {1, 3, 1});
        testSortDescending(
            new long[] {GREATEST - 1, 1, GREATEST - 2, 2},
            1,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:36:17 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

      public void testResolveOwnerClass() {
        assertEquals(Integer.class, new Owner<Integer>().new Inner<String>() {}.getOwnerType());
      }
    
      private static class Mapping<F, T> {
    
        final Type f = new TypeToken<F>(getClass()) {}.getType();
        final Type t = new TypeToken<T>(getClass()) {}.getType();
    
        Type getFromType() {
          return new TypeToken<F>(getClass()) {}.getType();
        }
    
        Type getToType() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

      public void testResolveOwnerClass() {
        assertEquals(Integer.class, new Owner<Integer>().new Inner<String>() {}.getOwnerType());
      }
    
      private static class Mapping<F, T> {
    
        final Type f = new TypeToken<F>(getClass()) {}.getType();
        final Type t = new TypeToken<T>(getClass()) {}.getType();
    
        Type getFromType() {
          return new TypeToken<F>(getClass()) {}.getType();
        }
    
        Type getToType() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    		*out = new(LocalEtcd)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.External != nil {
    		in, out := &in.External, &out.External
    		*out = new(ExternalEtcd)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Etcd.
    func (in *Etcd) DeepCopy() *Etcd {
    	if in == nil {
    		return nil
    	}
    	out := new(Etcd)
    	in.DeepCopyInto(out)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/policy_static_test.go

    					"0": cpuset.New(0),
    				},
    			},
    			stDefaultCPUSet: cpuset.New(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11),
    			expCSet:         cpuset.New(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11),
    		},
    		{
    			description:     "empty cpuset",
    			topo:            topoDualSocketHT,
    			numReservedCPUs: 1,
    			stAssignments:   state.ContainerCPUAssignments{},
    			stDefaultCPUSet: cpuset.New(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbTransport.java

        OutputStream out;
        InputStream in;
        byte[] sbuf = new byte[512]; /* small local buffer */
        SmbComBlankResponse key = new SmbComBlankResponse();
        long sessionExpiration = System.currentTimeMillis() + SO_TIMEOUT;
        LinkedList referrals = new LinkedList();
        SigningDigest digest = null;
        LinkedList sessions = new LinkedList();
        ServerData server = new ServerData();
        /* Negotiated values */
        int flags2 = FLAGS2;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultSourceDirectorySetTest.groovy

            File srcDir1 = new File(testDir, 'dir1')
            touch(new File(srcDir1, 'subdir/file1.txt'))
            touch(new File(srcDir1, 'subdir/file2.txt'))
            touch(new File(srcDir1, 'subdir/ignored.txt'))
            File srcDir2 = new File(testDir, 'dir2')
            touch(new File(srcDir2, 'subdir2/file1.txt'))
            touch(new File(srcDir2, 'subdir2/file2.txt'))
            touch(new File(srcDir2, 'subdir2/ignored.txt'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 14.4K bytes
    - Viewed (0)
Back to top