Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for December (0.36 sec)

  1. pkg/kubelet/client/kubelet_client.go

    			CertFile: c.TLSClientConfig.CertFile,
    			KeyFile:  c.TLSClientConfig.KeyFile,
    			// transport.loadTLSFiles would set this to true because we are only using files
    			// it is clearer to set it explicitly here so we remember that this is happening
    			ReloadTLSFiles: true,
    		},
    	}
    	if !cfg.HasCA() {
    		cfg.TLS.Insecure = true
    	}
    	return cfg
    }
    
    // NodeGetter defines an interface for looking up a node by name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/schema-extra-example.md

    # Declare um exemplo dos dados da requisição
    
    Você pode declarar exemplos dos dados que a sua aplicação pode receber.
    
    Aqui estão várias formas de se fazer isso.
    
    ## `schema_extra` do Pydantic
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/flagalloc.go

    				if !a.Type.IsFlags() {
    					continue
    				}
    				if a == flag {
    					continue
    				}
    				// Recalculate a
    				c := copyFlags(a, b)
    				// Update v.
    				v.SetArg(i, c)
    				// Remember the most-recently computed flag value.
    				flag = a
    			}
    			// Issue v.
    			b.Values = append(b.Values, v)
    			if v.clobbersFlags() {
    				flag = nil
    			}
    			if v.Type.IsFlags() {
    				flag = v
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. hack/golangci-hints.yaml

              #
              # By default, structured logging call parameters are checked, but usage of
              # those calls is not required. That is changed on a per-file basis.
              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. hack/golangci-strict.yaml

              #
              # By default, structured logging call parameters are checked, but usage of
              # those calls is not required. That is changed on a per-file basis.
              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. pkg/api/v1/endpoints/util.go

    		// Make a copy so we don't write to the
    		// input args of this function.
    		existingAddress = &v1.EndpointAddress{}
    		*existingAddress = *addr
    		allAddrs[key] = existingAddress
    	}
    
    	// Remember that this port maps to this address.
    	if _, found := portToAddrReadyMap[port]; !found {
    		portToAddrReadyMap[port] = addressSet{}
    	}
    	// if we have not yet recorded this port for this address, or if the previous
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 07 07:01:25 UTC 2018
    - 8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    		}
    
    		// We wrap this block in a func so we can defer c.workqueue.Done.
    		err := func(obj string) error {
    			// We call Done here so the workqueue knows we have finished
    			// processing this item. We also must remember to call Forget if we
    			// do not want this work item being re-queued. For example, we do
    			// not call Forget if a transient error occurs, instead the item is
    			// put back on the workqueue and attempted again after a back-off
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    		usageStatsOptions := UsageStatsOptions{Namespace: namespaceName, Scopes: scopes, Resources: intersection, ScopeSelector: scopeSelector}
    		stats, err := evaluator.UsageStats(usageStatsOptions)
    		if err != nil {
    			// remember the error
    			errors = append(errors, err)
    			// exclude resources which encountered calculation errors
    			matchedResources = Difference(matchedResources, intersection)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  9. src/encoding/gob/decoder.go

    		dec.err = errors.New("gob: duplicate type received")
    		return
    	}
    
    	// Type:
    	wire := new(wireType)
    	dec.decodeValue(tWireType, reflect.ValueOf(wire))
    	if dec.err != nil {
    		return
    	}
    	// Remember we've seen this type.
    	dec.wireType[id] = wire
    }
    
    var errBadCount = errors.New("invalid message length")
    
    // recvMessage reads the next count-delimited item from the input. It is the converse
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. ReadMe.md

    Keep in mind:
    
    - If you’re adding a dependency with OS mentioned in an artifact name (`darwin`, `mac`, `osx`, `linux`, `windows`), remember to add them to 
      `implicitDependencies` configuration or update `resolveDependencies` task if needed. `resolveDependencies` should resolve all dependencies
      including dependencies for different platforms.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top