Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,606 for nothings (0.43 sec)

  1. platforms/documentation/docs/src/snippets/publishing/javaLibrary/groovy/src/main/java/org/gradle/HttpClientWrapper.java

    package org.gradle;
    
    // The following types can appear anywhere in the code
    // but say nothing about API or implementation usage
    import org.apache.commons.httpclient.*;
    import org.apache.commons.httpclient.methods.*;
    import org.apache.commons.lang3.exception.ExceptionUtils;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    
    public class HttpClientWrapper {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/publishing/javaLibrary/kotlin/src/main/java/org/gradle/HttpClientWrapper.java

    package org.gradle;
    
    // The following types can appear anywhere in the code
    // but say nothing about API or implementation usage
    import org.apache.commons.httpclient.*;
    import org.apache.commons.httpclient.methods.*;
    import org.apache.commons.lang3.exception.ExceptionUtils;
    import java.io.IOException;
    import java.io.UnsupportedEncodingException;
    
    public class HttpClientWrapper {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. hack/verify-golangci-lint-pr-hints.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks a PR for the coding style for the Go language files using
    # golangci-lint. It does nothing when invoked as part of a normal "make
    # verify".
    
    set -o nounset
    set -o pipefail
    
    if [ ! "${PULL_NUMBER:-}" ]; then
      echo 'Not testing anything because this is not a pull request.'
      exit 0
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:14:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule3.ir.txt

                  annotations:
                    MyComposable
                  BLOCK_BODY
                    RETURN type=kotlin.Nothing from='local final fun <anonymous> (): @[MyComposable] kotlin.Function0<kotlin.Unit> declared in <root>.ArticleScreenContent'
                      FUN_EXPR type=kotlin.Function0<kotlin.Unit> origin=LAMBDA
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/fragmentFunction.ir.txt

                  $receiver: VALUE_PARAMETER name:<this> type:kotlin.String
                  BLOCK_BODY
                    RETURN type=kotlin.Nothing from='local final fun ext (): kotlin.String declared in <root>.CodeFragment.run'
                      CALL 'public final fun plus (other: kotlin.Any?): kotlin.String [operator] declared in kotlin.String' type=kotlin.String origin=PLUS
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Sep 12 13:08:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/os/stat_freebsd.go

    		fs.mode |= ModeDevice | ModeCharDevice
    	case syscall.S_IFDIR:
    		fs.mode |= ModeDir
    	case syscall.S_IFIFO:
    		fs.mode |= ModeNamedPipe
    	case syscall.S_IFLNK:
    		fs.mode |= ModeSymlink
    	case syscall.S_IFREG:
    		// nothing to do
    	case syscall.S_IFSOCK:
    		fs.mode |= ModeSocket
    	}
    	if fs.sys.Mode&syscall.S_ISGID != 0 {
    		fs.mode |= ModeSetgid
    	}
    	if fs.sys.Mode&syscall.S_ISUID != 0 {
    		fs.mode |= ModeSetuid
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/os/stat_linux.go

    		fs.mode |= ModeDevice | ModeCharDevice
    	case syscall.S_IFDIR:
    		fs.mode |= ModeDir
    	case syscall.S_IFIFO:
    		fs.mode |= ModeNamedPipe
    	case syscall.S_IFLNK:
    		fs.mode |= ModeSymlink
    	case syscall.S_IFREG:
    		// nothing to do
    	case syscall.S_IFSOCK:
    		fs.mode |= ModeSocket
    	}
    	if fs.sys.Mode&syscall.S_ISGID != 0 {
    		fs.mode |= ModeSetgid
    	}
    	if fs.sys.Mode&syscall.S_ISUID != 0 {
    		fs.mode |= ModeSetuid
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/os/stat_netbsd.go

    		fs.mode |= ModeDevice | ModeCharDevice
    	case syscall.S_IFDIR:
    		fs.mode |= ModeDir
    	case syscall.S_IFIFO:
    		fs.mode |= ModeNamedPipe
    	case syscall.S_IFLNK:
    		fs.mode |= ModeSymlink
    	case syscall.S_IFREG:
    		// nothing to do
    	case syscall.S_IFSOCK:
    		fs.mode |= ModeSocket
    	}
    	if fs.sys.Mode&syscall.S_ISGID != 0 {
    		fs.mode |= ModeSetgid
    	}
    	if fs.sys.Mode&syscall.S_ISUID != 0 {
    		fs.mode |= ModeSetuid
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/os/stat_openbsd.go

    		fs.mode |= ModeDevice | ModeCharDevice
    	case syscall.S_IFDIR:
    		fs.mode |= ModeDir
    	case syscall.S_IFIFO:
    		fs.mode |= ModeNamedPipe
    	case syscall.S_IFLNK:
    		fs.mode |= ModeSymlink
    	case syscall.S_IFREG:
    		// nothing to do
    	case syscall.S_IFSOCK:
    		fs.mode |= ModeSocket
    	}
    	if fs.sys.Mode&syscall.S_ISGID != 0 {
    		fs.mode |= ModeSetgid
    	}
    	if fs.sys.Mode&syscall.S_ISUID != 0 {
    		fs.mode |= ModeSetuid
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/BadJavaComponent.groovy

            new JvmSourceFile("compile/test", "Person.java", '''
    package compile.test;
    
    import java.util.Arrays;
    
    public class Person {
        String name;
        int age;
    
        void hello() {
            return nothing
        }
    }'''),
            new JvmSourceFile("compile/test", "Person2.java", '''
    Not a java source file at all...
    ''')
        ]
    
        List<String> compilerErrors = [
                "';' expected",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top