Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 467 for unrenamed (0.15 sec)

  1. pkg/apis/flowcontrol/v1beta1/conversion.go

    package v1beta1
    
    import (
    	"k8s.io/api/flowcontrol/v1beta1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kubernetes/pkg/apis/flowcontrol"
    )
    
    // LimitedPriorityLevelConfiguration.AssuredConcurrencyShares has been
    // renamed to NominalConcurrencyShares in v1beta3.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 26 19:34:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/v1beta2/conversion.go

    package v1beta2
    
    import (
    	"k8s.io/api/flowcontrol/v1beta2"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/kubernetes/pkg/apis/flowcontrol"
    )
    
    // LimitedPriorityLevelConfiguration.AssuredConcurrencyShares has been
    // renamed to NominalConcurrencyShares in v1beta3.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 26 19:34:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    from 'files'
                    into 'dest'
                    rename '(.*).a', '\$1.renamed'
                }
            '''
    
            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants(
                'one.renamed',
                'one.b',
                'dir/two.renamed',
                'dir/two.b'
            )
    
            when:
            run 'copy'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/preserve-entry-func-names.mlir

      %graph = tf_executor.graph {
        // This node would be renamed to bar1 [note: if imported from TF graphdef this would not be possible]
        %2:2 = tf_executor.island wraps "tf.Identity"(%arg1) {device = "", dtype = "tfdtype$DT_INT32"} : (tensor<10xi32>) -> tensor<10xi32> loc ("bar")
        // The following node would be renamed to bar2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

                                    con.entryAttributes['add-exports'] = [
                                        'java.base/jdk.internal.access=ALL-UNNAMED',
                                        'java.base/jdk.internal.loader=ALL-UNNAMED'
                                    ]
                                }
                            }
                        }
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            when:
            runTask { withSystemProperties('unrelated' : 'value') }
    
            then:
            hasNoSystemProperty('mySystemProperty')
        }
    
        def "Calling withSystemProperties(null) resets to default behavior"() {
            when:
            runTask {
                withSystemProperties('unrelated' : 'value')
                withSystemProperties(null)
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/installExecutable/kotlin/build.gradle.kts

    tasks.register<Copy>("installExecutable") {
        from("build/my-binary")
        into("/usr/local/bin")
        doNotTrackState("Installation directory contains unrelated files")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 172 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/install_cleans_build.txt

    ! exists mycmd$GOEXE
    
    # 'go install mycmd' does not clean up, even in the mycmd directory
    go build
    exists mycmd$GOEXE
    go install mycmd
    exists mycmd$GOEXE
    
    # 'go install mycmd' should not clean up in an unrelated current directory either
    cd ..
    cp mycmd/mycmd$GOEXE mycmd$GOEXE
    go install mycmd
    exists mycmd$GOEXE
    
    -- mycmd/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 21:00:48 UTC 2019
    - 507 bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/JdkIllegalReflectionTestWorkerIntegrationTest.groovy

            expect:
            fails "test"
            def results = new DefaultTestExecutionResult(file("."))
            results.assertTestClassesExecuted("example.MainTest")
            results.testClass("example.MainTest").assertTestFailed("runTest", containsString('module java.base does not open java.lang to unnamed module'))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue60933.go

    	g(io.Writer(nil), io /* ERROR "does not match" */ .ReadWriter(nil))
    }
    
    // Named and unnamed interface types match if they have the same methods.
    func _() {
    	g(io.Writer(nil), writer)
    	g(io.ReadWriter(nil), writer /* ERROR "does not match" */ )
    }
    
    // There must be no order dependency for named and unnamed interfaces.
    func f[T interface{ m(T) }](a, b T) {}
    
    type F interface {
    	m(F)
    }
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 26 18:33:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top