Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for _dot_ (0.03 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/maplist.go

    	"k8s.io/apiserver/pkg/cel/common"
    )
    
    // makeMapList returns a queryable interface over the provided x-kubernetes-list-type=map
    // keyedItems. If the provided schema is _not_ an array with x-kubernetes-list-type=map, returns an
    // empty mapList.
    func makeMapList(sts *schema.Structural, items []interface{}) (rv common.MapList) {
    	return common.MakeMapList(&model.Structural{Structural: sts}, items)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 02:56:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/groovy/build.gradle

                excludeGroupByRegex "my\\.company.*"
            }
        }
    }
    // end::repository-filter[]
    
    // tag::exclusive-repository-filter[]
    repositories {
        // This repository will _not_ be searched for artifacts in my.company
        // despite being declared first
        mavenCentral()
        exclusiveContent {
            forRepository {
                maven {
                    url "https://repo.mycompany.com/maven2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompileTimeConstantProvider.kt

            val bindingContext = analysisContext.analyze(expression)
    
            val constant = ConstantExpressionEvaluator.getPossiblyErrorConstant(expression, bindingContext)
    
            // TODO: how to _not_ evaluate expressions with a compilation error, e.g., uninitialized property access
            if (constant?.usesNonConstValAsConstant == true) return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/kotlin/build.gradle.kts

                excludeGroupByRegex("my\\.company.*")
            }
        }
    }
    // end::repository-filter[]
    
    // tag::exclusive-repository-filter[]
    repositories {
        // This repository will _not_ be searched for artifacts in my.company
        // despite being declared first
        mavenCentral()
        exclusiveContent {
            forRepository {
                maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/results/VisitedGraphResults.java

        Set<UnresolvedDependency> getUnresolvedDependencies();
    
        /**
         * Returns an optional failure describing an error that occurred during resolution.
         * This failure does not encompass unresolved dependencies and is _not_ captured in the resolution result.
         */
        Optional<ResolveException> getResolutionFailure();
    
        /**
         * Returns the root of the dependency graph.
         */
        MinimalResolutionResult getResolutionResult();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TrackingHttpHandler.java

    import java.util.Collection;
    
    interface TrackingHttpHandler {
        /**
         * Selects a response producer to handle the given request.
         *
         * This method is called under the state lock. The handler is _not_ called under the state lock. That is, the lock is held only while selecting how to handle the request.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    //	to the cloudprovider how to do this mapping.
    //
    //	For AWS, the InstanceID is not yet suitable for use as a Node.Name, so we actually use the
    //	PrivateDnsName for the Node.Name.  And this is _not_ always the same as the hostname: if
    //	we are using a custom DHCP domain it won't be.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/meta/errors_test.go

    import (
    	"errors"
    	"fmt"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    func TestErrorMatching(t *testing.T) {
    	testCases := []struct {
    		name string
    		// input should contain an error that is _not_ empty, otherwise the naive reflectlite.DeepEqual matching of
    		// the errors lib will always succeed, but for all of these we want to verify that the matching is based on
    		// type.
    		input       error
    		new         func() error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 11 22:50:51 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/SocksProxyServer.groovy

     *
     * You need to either always call start() and stop() in each test or use a
     * JUnit @Rule with an instance of this class.
     *
     * When used as a rule, the proxy is stopped automatically at the end of the test,
     * but it is _not_ automatically started.
     *
     * To use the proxy with a build, you must call configureProxy(GradleExecuter) before
     * starting the proxy.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/tokens.go

    	_Star     // *
    
    	// delimiters
    	_Lparen    // (
    	_Lbrack    // [
    	_Lbrace    // {
    	_Rparen    // )
    	_Rbrack    // ]
    	_Rbrace    // }
    	_Comma     // ,
    	_Semi      // ;
    	_Colon     // :
    	_Dot       // .
    	_DotDotDot // ...
    
    	// keywords
    	_Break       // break
    	_Case        // case
    	_Chan        // chan
    	_Const       // const
    	_Continue    // continue
    	_Default     // default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top