Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for _somename (0.44 sec)

  1. pkg/config/validation/envoyfilter/envoyfilter_test.go

    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	// Config name for testing
    	someName = "foo"
    	// Config namespace for testing.
    	someNamespace = "bar"
    )
    
    func stringOrEmpty(v error) string {
    	if v == nil {
    		return ""
    	}
    	return v.Error()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectTest.groovy

        def static final CUSTOM_NATURES = ['org.eclipse.jdt.core.scalanature']
        def static final CUSTOM_LINKED_RESOURCES = [new Link('somename', 'sometype', 'somelocation', '')] as Set
        def static final CUSTOM_RESOURCE_FILTERS = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultTaskTest.groovy

            task.name == TEST_TASK_NAME
            (task as TaskInternal).taskIdentity == identity
        }
    
        def "dependsOn() works"() {
            given:
            def dependsOnTask = createTask(project, "somename")
            def task = createTask(project, TEST_TASK_NAME)
            project.getTasks().create("path1")
            project.getTasks().create("path2")
    
            when:
            task.dependsOn(Project.PATH_SEPARATOR + "path1")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

                    val sameName = ktCtor.containingClassOrObject?.fqName?.asString() == classFqName
                    val sameParamCount = ktCtor.valueParameters.size == ctorParamTypes.size
                    val sameParamTypes = sameParamCount && ctorParamTypes.mapIndexed { idx, paramType -> paramType.endsWith(ktCtor.valueParameters[idx].typeReference!!.text) }.all { it }
                    sameName && sameParamCount && sameParamTypes
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 20:38:19 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    			valid:   true,
    			warning: true,
    		},
    		{
    			name:       "empty spec with non default name",
    			configName: someName,
    			in:         &security_beta.RequestAuthentication{},
    			valid:      true,
    		},
    		{
    			name:        "dry run annotation not supported",
    			configName:  someName,
    			annotations: map[string]string{"istio.io/dry-run": "true"},
    			in:          &security_beta.RequestAuthentication{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. chainable_api.go

    //
    //	db.Joins("Account").Find(&user)
    //	db.Joins("JOIN emails ON emails.user_id = users.id AND emails.email = ?", "******@****.***").Find(&user)
    //	db.Joins("Account", DB.Select("id").Where("user_id = users.id AND name = ?", "someName").Model(&Account{}))
    func (db *DB) Joins(query string, args ...interface{}) (tx *DB) {
    	return joins(db, clause.LeftJoin, query, args...)
    }
    
    // InnerJoins specify inner joins conditions
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

            %handle1 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "some_name", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
            // expected-remark@above {{ID: 0}}
            %handle2 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "some_name", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    		},
    
    		{
    			name: "ExternalName while changing Service IPFamily",
    			tweakSvc: func(oldSvc, newSvc *core.Service) {
    				oldSvc.Spec.ExternalName = "somename"
    				oldSvc.Spec.Type = core.ServiceTypeExternalName
    
    				newSvc.Spec.ExternalName = "somename"
    				newSvc.Spec.Type = core.ServiceTypeExternalName
    			},
    			numErrs: 0,
    		}, {
    			name: "setting ipfamily from nil to v4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top