Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for verified$ (0.15 sec)

  1. cmd/iam.go

    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    
    	return updatedAt, nil
    }
    
    // PolicyDBUpdateBuiltin - adds or removes policies from a user or a group
    // verified to be an internal IDP user.
    func (sys *IAMSys) PolicyDBUpdateBuiltin(ctx context.Context, isAttach bool,
    	r madmin.PolicyAssociationReq,
    ) (updatedAt time.Time, addedOrRemoved, effectivePolicies []string, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    //
    // If the BitrotVerifier is not nil or not verified ReadFile
    // tries to verify whether the disk has bitrot.
    //
    // Additionally ReadFile also starts reading from an offset. ReadFile
    // semantics are same as io.ReadFull.
    func (s *xlStorage) ReadFile(ctx context.Context, volume string, path string, offset int64, buffer []byte, verifier *BitrotVerifier) (int64, error) {
    	if offset < 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    		ctx = lkctx.Context()
    
    		// Release lock when the metadata is verified, and reader
    		// is ready to be read.
    		//
    		// This is possible to be lock free because
    		// - xl.meta for inlined objects has already read the data
    		//   into memory, any mutation on xl.meta subsequently is
    		//   inconsequential to the overall read operation.
    		// - xl.meta metadata is still verified for quorum under lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

    
    def tfr_gen(func, op_defs):
      """Parse a function and emit the TFR functions."""
      mlir_code, _ = TfrGen(op_defs).transform(func, None)
      assert tfr.verify(mlir_code), 'mlir code not verified: {}'.format(mlir_code)
      return mlir_code
    
    
    def tfr_funcs_gen_from_module(source, op_defs, method_prefix=None,
                                  op_libraries=None):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    		}
    		// Specify allowed CAs for client certificates
    		tlsOptions.Config.ClientCAs = clientCAs
    		// Populate PeerCertificates in requests, but don't reject connections without verified certificates
    		tlsOptions.Config.ClientAuth = tls.RequestClientCert
    	}
    
    	return tlsOptions, nil
    }
    
    // setContentTypeForClient sets the appropriate content type into the rest config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	// Add 1 to all bytes in SEL2
    	VADDUBM SEL2, ONE, SEL2    // VAB  SEL2, ONE, SEL2 OK
    	ADD     $96, P1ptr
    	BDNZ    loop_select
    
    	// STXVD2X is used here so that alignment doesn't
    	// need to be verified. Since values were loaded
    	// using LXVD2X this is OK.
    	STXVD2X X1H, (P3ptr+R0)
    	STXVD2X X1L, (P3ptr+R16)
    	STXVD2X Y1H, (P3ptr+R17)
    	STXVD2X Y1L, (P3ptr+R18)
    	STXVD2X Z1H, (P3ptr+R19)
    	STXVD2X Z1L, (P3ptr+R20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. cmd/object-api-multipart_test.go

    			}
    		}
    		// Test passes as expected, but the output values are verified for correctness here.
    		if actualErr == nil && testCase.shouldPass {
    			// Asserting whether the md5 output is correct.
    			if testCase.inputMd5 != actualInfo.ETag {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    // mallocinit.
    var physPageSize uintptr
    
    // physHugePageSize is the size in bytes of the OS's default physical huge
    // page size whose allocation is opaque to the application. It is assumed
    // and verified to be a power of two.
    //
    // If set, this must be set by the OS init code (typically in osinit) before
    // mallocinit. However, setting it at all is optional, and leaving the default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    it may be necessary to do the same when invoking a generated test
    binary directly. Because that directory may be located within the
    module cache, which may be read-only and is verified by checksums, the
    test must not write to it or any other directory within the module
    unless explicitly requested by the user (such as with the -fuzz flag,
    which writes failures to testdata/fuzz).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    }
    
    // Calls AddVolumeNode() once with attached set to false.
    // Verifies a single volume/node entry exists.
    // Then calls AddVolumeNode() with attached set to true
    // Verifies volume is attached to the node according to asw.
    func Test_AddVolumeNode_Positive_NewVolumeNewNodeWithFalseAttached(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
Back to top