Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for disambiguate (0.39 sec)

  1. pkg/config/analysis/msg/messages.gen.go

    	VirtualServiceDestinationPortSelectorRequired = diag.NewMessageType(diag.Error, "IST0112", "This VirtualService routes to a service %q that exposes multiple ports %v. Specifying a port in the destination is required to disambiguate.")
    
    	// DeploymentAssociatedToMultipleServices defines a diag.MessageType for message "DeploymentAssociatedToMultipleServices".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    === Specify options for tasks
    To pass an option to a task, prefix the option name with `--` after the task name:
    
    ----
    $ gradle exampleTask --exampleOption=exampleValue
    ----
    
    ==== Disambiguate task options from built-in options
    Gradle does not prevent tasks from registering options that conflict with Gradle's built-in options, like `--profile` or `--help`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// initialization.
    	ready *ready
    
    	// Underlying storage.Interface.
    	storage storage.Interface
    
    	// Expected type of objects in the underlying cache.
    	objectType reflect.Type
    	// Used for logging, to disambiguate *unstructured.Unstructured (CRDs)
    	groupResource schema.GroupResource
    
    	// "sliding window" of recent changes of objects and the current state.
    	watchCache *watchCache
    	reflector  *cache.Reflector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	if proxy != nil && proxy.SidecarScope != nil {
    		return proxy.SidecarScope.servicesByHostname[hostname]
    	}
    
    	// SidecarScope shouldn't be null here. If it is, we can't disambiguate the hostname to use for a namespace,
    	// so the selection must be undefined.
    	for _, service := range ps.ServiceIndex.HostnameAndNamespace[hostname] {
    		return service
    	}
    
    	// No service found
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/OverloadResolutionTest.kt

    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object OverloadResolutionTest {
        @Test
        fun `function overloads with and without configure lambda are disambiguated`() {
            val schema = schemaFromTypes(MyTopLevelReceiver::class, listOf(MyTopLevelReceiver::class))
    
            val code = """
                addSomething(1)
                addSomething(1) { }
            """.trimIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				// variable name to the locally scoped expression value.
    				"self.self == 201",
    				// CEL macro and function names do not need to be escaped because the parser can disambiguate them from the function and
    				// macro identifiers.
    				"self.getDate == 202",
    				"self.all == 203",
    				"self.size == '204'",
    				// _ is not escaped
    				"self._true == 301",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    					Protocol: v1.ProtocolUDP,
    				},
    				{
    					Name:     "dns-tcp",
    					Port:     53,
    					Protocol: v1.ProtocolTCP,
    					// We use TargetPort on TCP but not UDP/SCTP to
    					// help disambiguate the output.
    					TargetPort: intstr.FromInt32(5353),
    				},
    				{
    					Name:     "dns-sctp",
    					Port:     53,
    					Protocol: v1.ProtocolSCTP,
    				},
    			}
    		}),
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier_test.go

    					Protocol: v1.ProtocolUDP,
    				},
    				{
    					Name:     "dns-tcp",
    					Port:     53,
    					Protocol: v1.ProtocolTCP,
    					// We use TargetPort on TCP but not UDP/SCTP to
    					// help disambiguate the output.
    					TargetPort: intstr.FromInt32(5353),
    				},
    				{
    					Name:     "dns-sctp",
    					Port:     53,
    					Protocol: v1.ProtocolSCTP,
    				},
    			}
    		}),
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  9. src/cmd/doc/main.go

    			return pkg, arg, "", false
    		}
    	} else {
    		pkg, importErr = build.Import(arg, wd, build.ImportComment)
    		if importErr == nil {
    			return pkg, arg, "", false
    		}
    	}
    	// Another disambiguator: If the argument starts with an upper
    	// case letter, it can only be a symbol in the current directory.
    	// Kills the problem caused by case-insensitive file systems
    	// matching an upper case name as a package name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-65249`](https://youtrack.jetbrains.com/issue/KT-65249) K2: False positive modality is different for native compilation
    - [`KT-65982`](https://youtrack.jetbrains.com/issue/KT-65982) K2 Scripts cannot disambiguate declarations imported from default and explicit imports
    - [`KT-65677`](https://youtrack.jetbrains.com/issue/KT-65677) K2: Unable to resolve parent class from companion object
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top