Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for addLink (0.22 sec)

  1. cmd/encryption-v1.go

    		if err = objectKey.Unseal(key, sealedKey, crypto.SSEC.String(), bucket, object); err != nil {
    			return nil, err
    		}
    		return objectKey[:], nil
    	default:
    		return nil, errObjectTampered
    	}
    }
    
    // Adding support for reader based interface
    
    // DecryptRequestWithSequenceNumberR - same as
    // DecryptRequestWithSequenceNumber but with a reader
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. cmd/object-api-utils.go

    		}
    	}
    
    	// Make sure we can fit "size" on to the disk without getting above the diskFillFraction
    	if available < uint64(size) {
    		return false, nil
    	}
    
    	// How much will be left after adding the file.
    	available -= uint64(size)
    
    	// wantLeft is how much space there at least must be left.
    	wantLeft := uint64(float64(total) * (1.0 - diskFillFraction))
    	return available > wantLeft, nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		})
    	}
    }
    
    // The following set of Delete tests are testing the logic of adding `suggestion`
    // as a parameter with probably value of the current state.
    // Introducing it for GuaranteedUpdate cause a number of issues, so we're addressing
    // all of those upfront by adding appropriate tests:
    // - https://github.com/kubernetes/kubernetes/pull/35415
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

            * Processing a response after being generated by *path operation functions* but before returning it. E.g. adding custom headers, logging, adding extra metadata.
        * New docs section: [Custom Request and APIRoute class](https://fastapi.tiangolo.com/advanced/custom-request-and-route/).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. cmd/erasure-multipart.go

    			// Object info is the same in all disks, so we can pick
    			// the first meta from online disk
    			fi = partsMetadata[i]
    			break
    		}
    	}
    
    	// we are adding a new version to this object under the namespace lock, so this is the latest version.
    	fi.IsLatest = true
    
    	// Success, return object info.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		return nil, cleanupAction, err
    	}
    	opts.Mounts = append(opts.Mounts, mounts...)
    
    	// adding TerminationMessagePath on Windows is only allowed if ContainerD is used. Individual files cannot
    	// be mounted as volumes using Docker for Windows.
    	if len(container.TerminationMessagePath) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	}
    	sdata.SetLocal(true)
    	sdata.SetType(sym.SRODATA)
    	sdata.SetSize(int64(len(str)))
    	sdata.SetData([]byte(str))
    	s.AddAddr(ctxt.Arch, sdata.Sym())
    	s.AddUint(ctxt.Arch, uint64(len(str)))
    }
    
    func addinitarrdata(ctxt *Link, ldr *loader.Loader, s loader.Sym) {
    	p := ldr.SymName(s) + ".ptr"
    	sp := ldr.CreateSymForUpdate(p, 0)
    	sp.SetType(sym.SINITARR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    	ErrTransitionStorageClassNotFoundError
    	// MinIO storage class error codes
    	ErrInvalidStorageClass
    	ErrBackendDown
    	// Add new extended error codes here.
    	// Please open a https://github.com/minio/minio/issues before adding
    	// new error codes here.
    
    	ErrMalformedJSON
    	ErrAdminNoSuchUser
    	ErrAdminNoSuchUserLDAPWarn
    	ErrAdminLDAPExpectedLoginName
    	ErrAdminNoSuchGroup
    	ErrAdminGroupNotEmpty
    	ErrAdminGroupDisabled
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

    # accepts only one argument (docker options)
    function addockeropt {
    	DOCKER_OPTS_FILE=/etc/docker/daemon.json
    	if [ "$#" -lt 1 ]; then
    	echo "No arguments are passed while adding docker options. Expect one argument"
    	exit 1
    	elif [ "$#" -gt 1 ]; then
    	echo "Only one argument is accepted"
    	exit 1
    	fi
    	# appends the given input to the docker opts file i.e. /etc/docker/daemon.json file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    ### Container Images
    
    All container images are available as manifest lists and support the described
    architectures. It is also possible to pull a specific architecture directly by
    adding the "-$ARCH" suffix  to the container image name.
    
    name | architectures
    ---- | -------------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top