Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Lockable (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    				if len(jsonName) == 0 {
    					continue
    				}
    				if excludedNameSet.Has(jsonName) {
    					continue
    				}
    				var desc string
    				if docable, ok := obj.(documentable); ok {
    					desc = docable.SwaggerDoc()[jsonName]
    				}
    				route.Param(ws.QueryParameter(jsonName, desc).DataType(typeToJSON(sf.Type.String())))
    			}
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters_test.go

    					"Diff: %s", cmp.Diff(testCase.expectedAnnotations, existingNode.Annotations))
    			}
    		})
    	}
    }
    
    // We can't test failure or autodetection cases here because the relevant code isn't mockable
    func TestNodeAddress_NoCloudProvider(t *testing.T) {
    	cases := []struct {
    		name              string
    		nodeIPs           []net.IP
    		expectedAddresses []v1.NodeAddress
    		shouldError       bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top