Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 377 for Freq (0.05 sec)

  1. internal/grid/manager.go

    			}
    		}()
    		if debugPrint {
    			fmt.Printf("grid: Got a %s request for: %v\n", req.Method, req.URL)
    		}
    		ctx := req.Context()
    		if err := m.authRequest(req); err != nil {
    			gridLogOnceIf(ctx, fmt.Errorf("auth %s: %w", req.RemoteAddr, err), req.RemoteAddr)
    			w.WriteHeader(http.StatusForbidden)
    			return
    		}
    		conn, _, _, err := ws.UpgradeHTTP(req, w)
    		if err != nil {
    			if debugPrint {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                     */
                    RequestWithPath preq = (RequestWithPath) request;
                    if ( preq.getPath() != null && preq.getPath().length() > 0 ) {
                        if ( log.isDebugEnabled() ) {
                            log.debug(String.format("Setting DFS request path from %s to %s", preq.getPath(), preq.getFullUNCPath()));
                        }
                        preq.setResolveInDfs(true);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFileOutputStream.java

                        // no open option for truncating, need to truncate the file
                        Smb2SetInfoRequest treq = new Smb2SetInfoRequest(th.getConfig(), fh.getFileId());
                        treq.setFileInformation(new FileEndOfFileInformation(0));
                        th.send(treq, RequestParam.NO_RETRY);
                    }
                }
            }
            catch ( CIFSException e ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:14:04 UTC 2021
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    	errno := getsockopt(fd, level, opt, unsafe.Pointer(&value), &vallen)
    	return &value, errno
    }
    
    func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) {
    	return setsockopt(fd, level, opt, unsafe.Pointer(mreq), unsafe.Sizeof(*mreq))
    }
    
    // GetsockoptXucred is a getsockopt wrapper that returns an Xucred struct.
    // The usual level and opt are SOL_LOCAL and LOCAL_PEERCRED, respectively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. cmd/admin-handlers-site-replication.go

    	if objectAPI == nil {
    		return
    	}
    	var rreq madmin.SRRemoveReq
    	err := parseJSONBody(ctx, r.Body, &rreq, "")
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    	status, err := globalSiteReplicationSys.RemovePeerCluster(ctx, objectAPI, rreq)
    	if err != nil {
    		adminLogIf(ctx, err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. cmd/bucket-lifecycle.go

    func putRestoreOpts(bucket, object string, rreq *RestoreObjectRequest, objInfo ObjectInfo) (putOpts ObjectOptions) {
    	meta := make(map[string]string)
    	sc := rreq.OutputLocation.S3.StorageClass
    	if sc == "" {
    		sc = objInfo.StorageClass
    	}
    	meta[strings.ToLower(xhttp.AmzStorageClass)] = sc
    
    	if rreq.Type == SelectRestoreRequest {
    		for _, v := range rreq.OutputLocation.S3.UserMetadata {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/helper_test.go

    			if err != nil {
    				return
    			}
    			if tt.Req != nil && !tt.Req(client.Req) {
    				t.Errorf("unexpected request: %#v", client.Req)
    			}
    		})
    	}
    }
    
    func TestHelperCreate(t *testing.T) {
    	expectPost := func(req *http.Request) bool {
    		if req.Method != "POST" {
    			t.Errorf("unexpected method: %#v", req)
    			return false
    		}
    		parts := splitPath(req.URL.Path)
    		if parts[1] != "bar" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. src/net/http/request_test.go

    		t.Errorf(`req.FormValue("z") = %q, want "post"`, z)
    	}
    	if bq, found := req.PostForm["q"]; found {
    		t.Errorf(`req.PostForm["q"] = %q, want no entry in map`, bq)
    	}
    	if bz := req.PostFormValue("z"); bz != "post" {
    		t.Errorf(`req.PostFormValue("z") = %q, want "post"`, bz)
    	}
    	if qs := req.Form["q"]; !reflect.DeepEqual(qs, []string{"foo", "bar"}) {
    		t.Errorf(`req.Form["q"] = %q, want ["foo", "bar"]`, qs)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    		namespace, name, err := scope.Namer.Name(req)
    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    		ctx = request.WithNamespace(ctx, namespace)
    
    		outputMediaType, _, err := negotiation.NegotiateOutputMediaType(req, scope.Serializer, scope)
    		if err != nil {
    			scope.err(err, w, req)
    			return
    		}
    
    		result, err := getter(ctx, name, req)
    		if err != nil {
    			scope.err(err, w, req)
    			return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/volume/csi/fake/fake_client.go

    		DeviceMountPath: req.GetStagingTargetPath(),
    		VolumeContext:   req.GetVolumeContext(),
    	}
    	if req.GetVolumeCapability().GetMount() != nil {
    		publishedVolume.FSType = req.GetVolumeCapability().GetMount().FsType
    		publishedVolume.MountFlags = req.GetVolumeCapability().GetMount().MountFlags
    		publishedVolume.VolumeMountGroup = req.GetVolumeCapability().GetMount().VolumeMountGroup
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 16K bytes
    - Viewed (0)
Back to top