Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 343 for December (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. android/guava/src/com/google/common/collect/RegularImmutableMap.java

       * calls to Builder.put (though we don't really care *which* two values if there were more than
       * two). These considerations lead us to have a field of type DuplicateKey in the Builder, which
       * will remember the first duplicate key we encountered. All later calls to buildOrThrow() can
       * mention that key with its values. Further duplicates might be added in the meantime but since
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/phi.go

    			continue
    		}
    
    		// Process phis as new defs. They come before FwdRefs in this block.
    		for _, v := range b.Values {
    			if v.Op != ssa.OpPhi {
    				continue
    			}
    			n := int32(v.AuxInt)
    			// Remember the old assignment so we can undo it when we exit b.
    			stk = append(stk, stackEntry{n: n, v: values[n]})
    			// Record the new assignment.
    			values[n] = v
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  8. src/go/parser/resolver.go

    	for _, ident := range idents {
    		if ident.Obj != nil {
    			panic(fmt.Sprintf("%v: identifier %s already declared or resolved", ident.Pos(), ident.Name))
    		}
    		obj := ast.NewObj(kind, ident.Name)
    		// remember the corresponding declaration for redeclaration
    		// errors and global variable resolution/typechecking phase
    		obj.Decl = decl
    		obj.Data = data
    		// Identifiers (for receiver type parameters) are written to the scope, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K 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