Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 838 for tencent (0.13 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactoryTest.groovy

            capability.name == 'bar'
            capability.version == '1.0'
    
            where:
            parser << [strictParser, lenientParser]
        }
    
        def "can parse string notation without version using lenient parser"() {
            when:
            def capability = lenientParser.parseNotation("foo:bar")
    
            then:
            capability.group == 'foo'
            capability.name == 'bar'
            capability.version == null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubeletconfig/util/codec/codec.go

    		if lenientErr != nil {
    			// Lenient decoding failed with the current version, return the
    			// original strict error.
    			return nil, fmt.Errorf("failed lenient decoding: %v", err)
    		}
    		// Continue with the v1beta1 object that was decoded leniently, but emit a warning.
    		klog.InfoS("Using lenient decoding as strict decoding failed", "err", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

                }
    
                is ResolutionBackedFileCollection -> {
                    val displayName = fileCollection.resolutionHost.displayName
                    val lenient = fileCollection.isLenient
                    val nestedVisitor = ResolutionContentsCollectingVisitor(displayName, lenient)
                    fileCollection.visitStructure(nestedVisitor)
                    nestedVisitor.addElements(elements)
                    false
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

                    lenientArtifactViewFiles.each {
                        writeFile("lenient-artifact-view-file", writer, it)
                    }
                    lenientArtifactViewArtifacts.each {
                        writeArtifact("lenient-artifact-view-artifact", writer, it)
                    }
                    lenientArtifactViewFiles.files.each {
                        writeFile("lenient-artifact-view-file-file", writer, it)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvePOMIntegrationTest.groovy

            given:
            mainProjectDir.file("app/build.gradle") << """
                tasks.register("resolve", Resolve) {
                    artifactFiles.from(configurations.getByName("compileClasspath").incoming.artifactView {
                        lenient = true
                    }.getFiles())
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SubtypingComponent.kt

            // `NewKotlinTypeCheckerImpl` is inconsistent with its error type leniency: `isSubtypeOf` is lenient by default while `equalTypes`
            // isn't. Hence, even without a `LENIENT` policy, we need to wrap `typeChecker` to achieve consistent strictness.
            return IsErrorTypeEqualToAnythingTypeChecker(typeChecker, errorTypePolicy == KaSubtypingErrorTypePolicy.LENIENT)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/text/scanner/example_test.go

    		fmt.Printf("%s: %s\n", s.Position, s.TokenText())
    	}
    
    	// Output:
    	// default:1:1: %
    	// default:1:2: var1
    	// default:1:7: var2
    	// default:1:11: %
    	//
    	// percent:1:1: %var1
    	// percent:1:7: var2
    	// percent:1:11: %
    }
    
    func Example_mode() {
    	const src = `
        // Comment begins at column 5.
    
    This line should not be included in the output.
    
    /*
    This multiline comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 02:01:58 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/subtyping/AbstractSemanticSubtypingTest.kt

        )
    
        val ARE_EQUAL_LENIENT by stringDirective(
            description = "Whether the two types are equal (`true` or `false`) when using the `${KaSubtypingErrorTypePolicy.LENIENT}` error" +
                    " type policy.",
        )
    
        val IS_SUBTYPE by stringDirective(
            description = "Whether `type1` is a subtype of `type2` (`true` or `false`).",
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/cmd/covdata/doc.go

    specifics on usage of a given mode):
    
    1. Report percent of statements covered in each profiled package
    
    	$ go tool covdata percent -i=profiledir
    	cov-example/p	coverage: 41.1% of statements
    	main	coverage: 87.5% of statements
    	$
    
    2. Report import paths of packages profiled
    
    	$ go tool covdata pkglist -i=profiledir
    	cov-example/p
    	main
    	$
    
    3. Report percent statements covered by function:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/math/tanh.go

    // available from http://www.netlib.org/cephes/cmath.tgz.
    // The go code is a simplified version of the original C.
    //      tanh.c
    //
    //      Hyperbolic tangent
    //
    // SYNOPSIS:
    //
    // double x, y, tanh();
    //
    // y = tanh( x );
    //
    // DESCRIPTION:
    //
    // Returns hyperbolic tangent of argument in the range MINLOG to MAXLOG.
    //      MAXLOG = 8.8029691931113054295988e+01 = log(2**127)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top