Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 107 of 107 for nextB (0.1 sec)

  1. src/crypto/x509/x509.go

    	// indicates the issuance date of the CRL.
    	ThisUpdate time.Time
    	// NextUpdate is used to populate the nextUpdate field in the CRL, which
    	// indicates the date by which the next CRL will be issued. NextUpdate
    	// must be greater than ThisUpdate.
    	NextUpdate time.Time
    
    	// Extensions contains raw X.509 extensions. When creating a CRL,
    	// the Extensions field is ignored, see ExtraExtensions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			return &ParentError{
    				Reason:  ParentErrorNotAccepted,
    				Message: fmt.Sprintf("sectionName %q not found", parentRef.SectionName),
    			}
    		}
    
    		// Next check the hostnames are a match. This is a bi-directional wildcard match. Only one route
    		// hostname must match for it to be allowed (but the others will be filtered at runtime)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    		},
    	}, {
    		name: "bug35538",
    		input: []uint64{
    			3, 0, 500, // hz = 500. Must match the period.
    			// Fake frame: tryAdd will have inlinedCallerDump
    			// (stack[1]) on the deck when it encounters the next
    			// inline function. It should accept this.
    			7, 0, 10, inlinedCallerStack[0], inlinedCallerStack[1], inlinedCallerStack[0], inlinedCallerStack[1],
    			5, 0, 20, inlinedCallerStack[0], inlinedCallerStack[1],
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	if len(sa.Remote) != 6 {
    		return nil, 0, EINVAL
    	}
    	if len(sa.Dev) > IFNAMSIZ-1 {
    		return nil, 0, EINVAL
    	}
    
    	*(*uint16)(unsafe.Pointer(&sa.raw[0])) = AF_PPPOX
    	// This next field is in host-endian byte order. We can't use the
    	// same unsafe pointer cast as above, because this value is not
    	// 32-bit aligned and some architectures don't allow unaligned
    	// access.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    		// upload an object such as `prefix/object/xl.meta`
    		// where `prefix/object` is already an object
    		if isSysErrNotDir(err) && runtime.GOOS != globalWindowsOSName {
    			// NOTE: On windows the error happens at
    			// next line and returns appropriate error.
    			return res, errFileAccessDenied
    		}
    		if !osIsNotExist(err) {
    			return res, osErrToFileErr(err)
    		}
    		if formatLegacy {
    			// errFileNotFound comes here.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  6. docs/bucket/notifications/README.md

    ```
    NODE_ENV=webhook node thumbnail-webhook.js
    ```
    
    Thumbnailer starts running at `http://localhost:3000/`. Next, configure the MinIO server to send notifications to this URL (as mentioned in step 1) and use `mc` to set up bucket notifications (as mentioned in step 2). Then upload a JPEG image to MinIO server by
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/sync/atomic/atomic_test.go

    			defer func() {
    				runtime.GC()
    				recover()
    			}()
    			f()
    		}()
    	}
    }
    
    // Test that this compiles.
    // When atomic.Pointer used _ [0]T, it did not.
    type List struct {
    	Next Pointer[List]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
Back to top