Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 172 for unnamed1 (0.16 sec)

  1. android/guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
         * <p>It is strongly encouraged to use {@link #add(String, Object)} instead and give value a
         * readable name.
         */
        @CanIgnoreReturnValue
        public ToStringHelper addValue(@CheckForNull Object value) {
          return addHolder(value);
        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
         * <p>It is strongly encouraged to use {@link #add(String, Object)} instead and give value a
         * readable name.
         */
        @CanIgnoreReturnValue
        public ToStringHelper addValue(@CheckForNull Object value) {
          return addHolder(value);
        }
    
        /**
         * Adds an unnamed value to the formatted output.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/groovyScope/groovy/build.gradle

        mainClass = 'scope'
        classpath = sourceSets.main.runtimeClasspath
        if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_1_9)) {
            jvmArgs = ['--add-opens', 'java.base/java.lang=ALL-UNNAMED']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 345 bytes
    - Viewed (0)
  4. test/fixedbugs/issue52535.go

    // compile
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gofrontend crashed converting unnamed bool type to any.
    
    package p
    
    func F() {
    	m := make(map[int]int)
    	var ok any
    	_, ok = m[0]
    	_ = ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 17:37:12 UTC 2022
    - 314 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/groovyScope/kotlin/build.gradle.kts

            classpath = sourceSets.main.get().runtimeClasspath
            if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_1_9)) {
                jvmArgs = listOf("--add-opens", "java.base/java.lang=ALL-UNNAMED")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 385 bytes
    - Viewed (0)
  6. test/fixedbugs/issue5910.go

    // compiledir
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5910: parsing of unnamed struct types
    // in inlined bodies was broken.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 05 20:09:53 UTC 2013
    - 272 bytes
    - Viewed (0)
  7. test/fixedbugs/issue16616.go

    // compiledir
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests that unexported fields of unnamed types have different PkgPath values.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 11:46:15 UTC 2016
    - 272 bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskOutputsTest.groovy

        }
    
        def "can register unnamed output files"() {
            when:
            outputs.files("a", "b")
            then:
            outputs.files.files == files('a', "b")
            outputs.fileProperties*.propertyName == ['$1$1', '$1$2']
            outputs.fileProperties*.propertyFiles*.files.flatten() == [file("a"), file("b")]
        }
    
        def "can register unnamed output files with property name"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue8148.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 8148.  A typedef of an unnamed struct didn't work when used
    // with an exported Go function.  No runtime test; just make sure it
    // compiles.
    
    package cgotest
    
    /*
    typedef struct { int i; } T;
    int get8148(void);
    */
    import "C"
    
    //export issue8148Callback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 526 bytes
    - Viewed (0)
  10. test/fixedbugs/issue31637.go

    // license that can be found in the LICENSE file.
    
    // This directory contains a pair of packages that triggered
    // a compiler crash in gollvm (problem in handling an inlinable
    // method with unnamed parameter). See issue 31637 for details.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 19:55:13 UTC 2019
    - 381 bytes
    - Viewed (0)
Back to top