Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for fixArg (0.12 sec)

  1. hack/golangci.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
        # decided on a case-by-case basis".  This was initially decided by a
        # majority of the developers who voted in
        # https://github.com/kubernetes/kubernetes/issues/117288 and may evolve
        # over time.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

          }
        }
        return urls.build();
      }
    
      /**
       * These tests fail in JDK 9 and JDK 10 for an unknown reason. It might be the test; it might be
       * the underlying functionality. Fixing this is not a high priority; if you need it to be fixed,
       * please comment on <a href="https://github.com/google/guava/issues/3086">issue 3086</a>.
       */
      private static boolean isJdk9OrHigher() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    			lastErrorTime: time.Now(),
    			// 1ms was the number folks were able to stomach as a global rate limit.
    			// If you need to log errors more than 1000 times a second you
    			// should probably consider fixing your code instead. :)
    			minPeriod: time.Millisecond,
    		}).OnError()
    	},
    }
    
    type ErrorHandler func(ctx context.Context, err error, msg string, keysAndValues ...interface{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    Component metadata rules are defined as part of the build logic and can be shared through plugins.
    For more information, see the section on <<component_metadata_rules.adoc#sec:component_metadata_rules,fixing metadata with component metadata rules>>.
    
    [[sub:terminology_module_version]]
    == Module version
    
    A module version represents a distinct set of changes of a released <<#sub:terminology_module,module>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    // +k8s:conversion-gen=k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm
    
    // Package v1beta3 defines the v1beta3 version of the kubeadm configuration file format.
    // This version improves on the v1beta2 format by fixing some minor issues and adding a few new fields.
    //
    // A list of changes since v1beta2:
    //   - The deprecated "ClusterConfiguration.useHyperKubeImage" field has been removed.
    //     Kubeadm no longer supports the hyperkube image.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    [[sec:swift_test_filtering]]
    == Test filtering
    It’s a common requirement to run subsets of a test suite, such as when you’re fixing a bug or developing a new test case.
    Gradle provides filtering to do this.
    You can select tests to run based on:
    
    - A simple class name or method name, e.g. `SomeTest`, `SomeTest.someMethod`
    - ‘*’ wildcard matching
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    // +k8s:conversion-gen=k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm
    
    // Package v1beta4 defines the v1beta4 version of the kubeadm configuration file format.
    // This version improves on the v1beta3 format by fixing some minor issues and adding a few new fields.
    //
    // A list of changes since v1beta3:
    //
    //   - TODO https://github.com/kubernetes/kubeadm/issues/2890
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. src/encoding/xml/read_test.go

    didn&amp;#39;t know where to put the tab stops.  Another problem
    was that some of the code assumed that string byte
    offsets were the same as column offsets, which is only
    true if there are no tabs.
    
    In the process of fixing this, I cleaned up the arguments
    to Fold and ExpandTabs and renamed them Break and
    _ExpandTabs so that I could be sure that I found all the
    call sites.  I also wanted to verify that ExpandTabs was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    		encoded []byte   // re-encoded object (only if different from example encoding)
    		reasons []string // reasons for re-encode difference
    
    		// TODO: The cases with nonempty fixme are known to be not working and fixing them
    		// is an alpha criteria. They're present and skipped for visibility.
    		fixme string
    	}{
    		{
    			example: hex("00"),
    			decoded: int64(0),
    		},
    		{
    			example: hex("01"),
    			decoded: int64(1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/stackalloc.go

    		// is compiled incorrectly.  I believe the cause is one of those SSA-to-registers
    		// puzzles that the register allocator untangles; in the event that a register
    		// parameter does not end up bound to a name, "fixing" it is a bad idea.
    		//
    		//if f.DebugTest {
    		//	if v.Op == OpArgIntReg || v.Op == OpArgFloatReg {
    		//		aux := v.Aux.(*AuxNameOffset)
    		//		loc := LocalSlot{N: aux.Name, Type: v.Type, Off: aux.Offset}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top