Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for AdTest (0.13 sec)

  1. src/main/java/jcifs/smb/SmbCopyUtil.java

            String path = dest.getLocator().getUNCPath();
            if ( path.length() > 1 ) {
                try {
                    dest.mkdir();
                    if ( dh.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
                        dest.setPathInformation(src.getAttributes(), src.createTime(), src.lastModified(), src.lastAccess());
                    }
                    else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

      (TF_LessOp:$dest $arg0, $arg1), [], [(CopyAttrs $src, $dest)]>;
    
    def LogicalNotOfLess : Pat<(
      TF_LogicalNotOp:$src (TF_LessOp $arg0, $arg1)),
      (TF_GreaterEqualOp:$dest $arg0, $arg1), [], [(CopyAttrs $src, $dest)]>;
    
    def LogicalNotOfLessEqual : Pat<
      (TF_LogicalNotOp:$src (TF_LessEqualOp $arg0, $arg1)),
      (TF_GreaterOp:$dest $arg0, $arg1), [], [(CopyAttrs $src, $dest)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

            when:
            run 'sync'
    
            then:
            file('dest/preservedDir').isDirectory()
            file('dest/emptyDir').isDirectory()
            !file('dest/nonPreservedDir').isDirectory()
        }
    
        def "sync action"() {
            given:
            defaultSourceFileTree()
            file('dest').create {
                file 'extra1.txt'
                extraDir { file 'extra2.txt' }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

            def jar = new JarTestFixture(file('dest/test.jar'), 'ISO-8859-15')
            jar.assertContainsFile('mojibakā‚¬.txt')
        }
    
        @Issue('GRADLE-3374')
        def "write manifest encoded using UTF-8 when platform default charset is not UTF-8"() {
            given:
            buildScript """
                task jar(type: Jar) {
                    from file('test')
                    destinationDirectory = file('dest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -			- 1))						      \
    -		  : __stpcpy (dest, src)))
    -#   endif
    +# ifndef _HAVE_STRING_ARCH_stpcpy
    +#  define __stpcpy(dest, src) __builtin_stpcpy (dest, src)
     /* In glibc we use this function frequently but for namespace reasons
        we have to use the name `__stpcpy'.  */
    -#   define stpcpy(dest, src) __stpcpy (dest, src)
    -#  endif
    +#  define stpcpy(dest, src) __stpcpy (dest, src)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

            src.setAaa("111");
            src.setCcc("333");
    
            final MyClass2 dest = new MyClass2();
            dest.setAaa("aaa");
            dest.setBbb("bbb");
            dest.setDdd("ddd");
    
            BeanUtil.copyBeanToBean(src, dest);
            assertThat(dest.getAaa(), is("111"));
            assertThat(dest.getBbb(), is(nullValue()));
            assertThat(dest.getDdd(), is("ddd"));
        }
    
        /**
         * @throws Exception
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/hash/HashCodeTest.java

      public void testIntWriteBytesTo() {
        byte[] dest = new byte[4];
        HashCode.fromInt(42).writeBytesTo(dest, 0, 4);
        assertTrue(Arrays.equals(HashCode.fromInt(42).asBytes(), dest));
      }
    
      public void testLongWriteBytesTo() {
        byte[] dest = new byte[8];
        HashCode.fromLong(42).writeBytesTo(dest, 0, 8);
        assertTrue(Arrays.equals(HashCode.fromLong(42).asBytes(), dest));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/watch_test.go

    	server := httptest.NewServer(handler)
    	defer server.Close()
    
    	dest, _ := url.Parse(server.URL)
    	dest.Scheme = "ws" // Required by websocket, though the server never sees it.
    	dest.Path = "/" + prefix + "/" + testGroupVersion.Group + "/" + testGroupVersion.Version + "/watch/simples"
    	dest.RawQuery = ""
    
    	ws, err := websocket.Dial(dest.String(), "", "http://localhost")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 17:27:39 UTC 2023
    - 30K bytes
    - Viewed (0)
  9. .github/workflows/build.yml

            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Run Checks
            run: ./gradlew test -Dtest.java.version=11
    
          - name: Publish Test Report
            if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'
            uses: mikepenz/action-junit-report@v4
            with:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    }
    
    func copyU32(val uint32, dest []uint32) int {
    	if len(dest) < 1 {
    		return 0
    	}
    	dest[0] = val
    	return 1
    }
    
    func copyU32Arr(src, dest []uint32) int {
    	if len(dest) < len(src) {
    		return 0
    	}
    	for i, v := range src {
    		dest[i] = v
    	}
    	return len(src)
    }
    
    func copyU64(val uint64, dest []uint64) int {
    	if len(dest) < 1 {
    		return 0
    	}
    	dest[0] = val
    	return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top