Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 567 for NOR (0.02 sec)

  1. src/internal/types/testdata/fixedbugs/issue3117.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type S struct {
    	a [1]int
    }
    
    func _(m map[int]S, key int) {
    	m /* ERROR "cannot assign to m[key].a[0] (neither addressable nor a map index expression)" */ [key].a[0] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 19:07:50 UTC 2023
    - 343 bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/expiration_test.go

                                        <Date>invalid date</Date>
                                        </Expiration>`,
    			expectedErr: errLifecycleInvalidDate,
    		},
    		{ // Expiration with both number of days nor a date
    			inputXML: `<Expiration>
    		                    <Date>2019-04-20T00:01:00Z</Date>
    		                    </Expiration>`,
    			expectedErr: errLifecycleDateNotMidnight,
    		},
    	}
    
    	for i, tc := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformFilteringIntegrationTest.groovy

                @AnalyzeClasses(packages = "example")
                class DeclaresTestsAsFieldsNotMethodsTest {
                    // this will create a JUnit Platform TestDescriptor with neither a Class- nor a MethodSource
                    @ArchTest
                    static final ArchRule example = classes().should().bePublic();
                }
            '''
    
            when:
            succeeds('test')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                        assertNoScriptCompile(rootBuildFile.stage1)
                        assertNoScriptCompile(rootBuildFile.stage2)
                    }
                    // then: no compilation nor class loading
                    compilationCache {
                        hits(leftBuildFile, rootBuildFile, rightBuildFile)
                    }
                    classLoadingCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/LocallyAvailableExternalResource.java

     */
    public interface LocallyAvailableExternalResource extends ExternalResource {
        /**
         * Returns a local file containing the content of this resource. This may nor may not be the original resource.
         */
        File getFile();
    
        /**
         * Does this resource currently exist?
         */
        boolean exists();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/internal/osinfo/os_js.go

    import (
    	"fmt"
    	"syscall/js"
    )
    
    // Version returns the OS version name/number.
    func Version() (string, error) {
    	// Version detection on Wasm varies depending on the underlying runtime
    	// (browser, node, etc), nor is there a standard via something like
    	// WASI (see https://go.dev/issue/31105). For now, attempt a few simple
    	// combinations for the convenience of reading logs at build.golang.org
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:43:17 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/developingPlugins/reactingToBuildFeatures/groovy/buildSrc/src/main/java/MyPlugin.java

            BuildFeatures buildFeatures = getBuildFeatures();
    
            Boolean configCacheRequested = buildFeatures.getConfigurationCache().getRequested() // <2>
                .getOrNull(); // could be null if user did not opt in nor opt out
            String configCacheUsage = describeFeatureUsage(configCacheRequested);
            MyReport myReport = new MyReport();
            myReport.setConfigurationCacheUsage(configCacheUsage);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxyTest.groovy

            IllegalArgumentException e = thrown()
            e.message == "org.gradle.tooling.internal.consumer.connection.ToolingParameterProxyTest\$InvalidParameter1 is not a valid parameter type. Method notASetterOrGetter is neither a setter nor a getter."
        }
    
        def "returns parameter invalid when setter not correct"() {
            when:
            ToolingParameterProxy.validateParameter(InvalidParameter2)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. src/runtime/float.go

    // isNaN reports whether f is an IEEE 754 “not-a-number” value.
    func isNaN(f float64) (is bool) {
    	// IEEE 754 says that only NaNs satisfy f != f.
    	return f != f
    }
    
    // isFinite reports whether f is neither NaN nor an infinity.
    func isFinite(f float64) bool {
    	return !isNaN(f - f)
    }
    
    // isInf reports whether f is an infinity.
    func isInf(f float64) bool {
    	return !isNaN(f) && !isFinite(f)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/doc.go

    //
    // The slog checker looks for calls to functions from the log/slog
    // package that take alternating key-value pairs. It reports calls
    // where an argument in a key position is neither a string nor a
    // slog.Attr, and where a final key is missing its value.
    // For example,it would report
    //
    //	slog.Warn("message", 11, "k") // slog.Warn arg "11" should be a string or a slog.Attr
    //
    // and
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 830 bytes
    - Viewed (0)
Back to top