Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,957 for Filler (0.14 sec)

  1. src/encoding/ascii85/ascii85.go

    				d.out = d.outbuf[0:ndst]
    				d.nbuf = copy(d.buf[0:], d.buf[nsrc:d.nbuf])
    				continue // copy out and return
    			}
    			if ndst == 0 && d.err == nil {
    				// Special case: input buffer is mostly filled with non-data bytes.
    				// Filter out such bytes to make room for more input.
    				off := 0
    				for i := 0; i < d.nbuf; i++ {
    					if d.buf[i] > ' ' {
    						d.buf[off] = d.buf[i]
    						off++
    					}
    				}
    				d.nbuf = off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_init.go

    	"github.com/google/uuid"
    )
    
    // WithAuditInit initializes the audit context and attaches the Audit-ID associated with a request.
    //
    // a. If the caller does not specify a value for Audit-ID in the request header, we generate a new audit ID
    // b. We echo the Audit-ID value to the caller via the response Header 'Audit-ID'.
    func WithAuditInit(handler http.Handler) http.Handler {
    	return withAuditInit(handler, func() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:35 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/create_update.go

    	// filled in before the object is persisted.  This method should not mutate
    	// the object.
    	ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList
    	// WarningsOnUpdate returns warnings to the client performing the update.
    	// WarningsOnUpdate is invoked after default fields in the object have been filled in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  4. cmd/os_other.go

    						continue
    					}
    					return err
    				}
    
    				// Ignore symlinked directories.
    				if fi.IsDir() {
    					continue
    				}
    			}
    			if err = filter(fi.Name(), fi.Mode()); err == errDoneForNow {
    				// filtering requested to return by caller.
    				return nil
    			}
    		}
    	}
    	return nil
    }
    
    // Return entries at the directory dirPath.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 13 15:14:36 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/cmd/distpack/archive.go

    func (a *Archive) AddPrefix(prefix string) {
    	for i := range a.Files {
    		a.Files[i].Name = path.Join(prefix, a.Files[i].Name)
    	}
    }
    
    // Filter removes files from the archive for which keep(name) returns false.
    func (a *Archive) Filter(keep func(name string) bool) {
    	files := a.Files[:0]
    	for _, f := range a.Files {
    		if keep(f.Name) {
    			files = append(files, f)
    		}
    	}
    	a.Files = files
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. pkg/kube/krt/internal.go

    	stop         <-chan struct{}
    }
    
    // dependency is a specific thing that can be depended on
    type dependency struct {
    	id             collectionUID
    	collectionName string
    	// Filter over the collection
    	filter *filter
    }
    
    type erasedEventHandler = func(o []Event[any], initialSync bool)
    
    // registerDependency is an internal interface for things that can register dependencies.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

                }
            }
            return builder.build();
        }
    
        @Override
        public void addFilter(Spec<? super Task> filter) {
            this.filter = Specs.intersect(this.filter, filter);
        }
    
        @Override
        public void setContinueOnFailure(boolean continueOnFailure) {
            this.continueOnFailure = continueOnFailure;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/stream_executor/stream_executor.h

    // should allow registering a pluggable device with TensorFlow.
    //
    // Conventions:
    //   * Struct prefix indicates whether struct fields should be filled by the
    //     plugin or core implementation:
    //     * SE_ : set/filled by core unless explicitly marked otherwise.
    //     * SP_ : set/filled by plugin unless explicitly marked otherwise.
    //   * We use `struct_size` for version checking. It is exempt from the `SE/SP`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  9. cmd/os_windows.go

    				continue
    			}
    
    			typ = fi.Mode()
    		case data.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0:
    			typ = os.ModeDir
    		}
    
    		if err = filter(name, typ); err == errDoneForNow {
    			// filtering requested to return by caller.
    			return nil
    		}
    	}
    
    	return nil
    }
    
    // Return N entries at the directory dirPath.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/test_utils.h

    // Currently, this returns scalar, 1D vector, 2D matrix, and a 4D tensor shapes
    std::vector<std::vector<int64_t>> InterestingShapes();
    
    // Returns a TensorHandle of `dtype` and `shape`, filled with `value`.
    // `dtype` must be an integer dtype, float, or double.
    // If a TensorHandle cannot be created successfully, this function will
    // CHECK fail. This should only be used for testing purposes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top