Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,782 for better (0.12 sec)

  1. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/PublishArtifactLocalArtifactMetadataCodec.kt

     *
     * A better change would be to split an immutable id type out of PublishArtifactLocalArtifactMetadata (or reuse one of the existing
     * implementations). However, the Eclipse tooling model builder assumes that the id and metadata objects are the same and also that
     * the metadata object provides access to the backing PublishArtifact. This makes the better change too large to undertake at this point,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/scope.go

    }
    
    // It would be better to implement this function in topologymanager instead of scope
    // but topologymanager do not track mapping anymore
    func (s *scope) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    
    	s.podMap.Add(string(pod.UID), container.Name, containerID)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. releasenotes/notes/27115.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 24471
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 13 00:40:53 UTC 2020
    - 209 bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue45985.go

    package issue45985
    
    func app[S interface{ ~[]T }, T any](s S, e T) S {
    	return append(s, e)
    }
    
    func _() {
    	_ = app /* ERROR "S (type int) does not satisfy interface{~[]T}" */ [int] // TODO(gri) better error message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 22:48:09 UTC 2023
    - 377 bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

            """
    
            when:
            run('checkDeadInternalLinks').buildAndFail()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 28 22:01:54 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue13779.go

    // errorcheck
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 13779: provide better error message when directly assigning to struct field in map
    
    package main
    
    func main() {
    	type person struct{ age, weight, height int }
    	students := map[string]person{"sally": person{12, 50, 32}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 24 15:07:16 UTC 2016
    - 483 bytes
    - Viewed (0)
  7. src/go/parser/testdata/issue23434.src

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test case for go.dev/issue/23434: Better synchronization of
    // parser after missing type. There should be exactly
    // one error each time, with now follow errors.
    
    package p
    
    func g() {
    	m := make(map[string]! /* ERROR "expected type, found '!'" */ )
    	for {
    		x := 1
    		print(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 553 bytes
    - Viewed (0)
  8. src/go/parser/testdata/issue34946.src

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test case for go.dev/issue/34946: Better synchronization of
    // parser for function declarations that start their
    // body's opening { on a new line.
    
    package p
    
    // accept Allman/BSD-style declaration but complain
    // (implicit semicolon between signature and body)
    func _() int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 608 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.cc

                                 const DebuggerConfig& debugger_config) {
      // Convert NCHW tensors to NHWC at along with extra optimizations as
      // downstream passes perform better optimizations when dealing with NHWC
      // formatted tensors.
      AddProcessNchwTensorPasses(pm);
    
      pm.addPass(CreateLiftQuantizableSpotsAsFunctionsPass(quantization_specs));
      if (debugger_config.debugger_type() !=
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

                configurations.all {
                    resolutionStrategy {
                       capabilitiesResolution.withCapability('org.test:cap') {
                          $rule
                          because "we like testB better"
                       }
                    }
                }
            """
    
            when:
            repositoryInteractions {
                'org:testA:1.0' {
                    expectGetMetadata()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top