Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 96 of 96 for isLegal (0.29 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

     * <td>
     * A prototypical example that uses all the fields.
     * </td>
     * </tr>
     *
     * <tr>
     * <td width="20%">
     * <code>smb://server/share/path/to/dir &lt;-- ILLEGAL </code></td>
     * <td>
     * URLs that represent servers, shares, or directories require a trailing slash '/'.
     * </td>
     * </tr>
     *
     * </table>
     * 
     * <p>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  2. src/text/template/exec_test.go

    	{"bug6b", "{{vfunc .V0 .V0}}", "vfunc", tVal, true},
    	{"bug6c", "{{vfunc .V1 .V0}}", "vfunc", tVal, true},
    	{"bug6d", "{{vfunc .V1 .V1}}", "vfunc", tVal, true},
    	// Legal parse but illegal execution: non-function should have no arguments.
    	{"bug7a", "{{3 2}}", "", tVal, false},
    	{"bug7b", "{{$x := 1}}{{$x 2}}", "", tVal, false},
    	{"bug7c", "{{$x := 1}}{{3 | $x}}", "", tVal, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    		if len(ns) > 0 {
    			resp = append(resp, fmt.Sprintf("%s/%s", ns, hostname))
    		}
    	}
    
    	// If nothing matched use ~ namespace (match nothing). We need this since its illegal to have an
    	// empty hostname list, but we still need the Gateway provisioned to ensure status is properly set and
    	// SNI matches are established; we just don't want to actually match any routing rules (yet).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    	globalIsCICD = true
    
    	os.Exit(m.Run())
    }
    
    // concurrency level for certain parallel tests.
    const testConcurrencyLevel = 10
    
    const iso8601TimeFormat = "2006-01-02T15:04:05.000Z"
    
    // Excerpts from @lsegal - https://github.com/aws/aws-sdk-js/issues/659#issuecomment-120477258
    //
    //	User-Agent:
    //
    //	    This is ignored from signing because signing this causes problems with generating pre-signed URLs
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    					// from syncPodFn
    					p.recorder.Eventf(update.Options.Pod, v1.EventTypeWarning, events.FailedSync, "error determining status: %v", err)
    					return err
    				}
    			}
    
    			// Take the appropriate action (illegal phases are prevented by UpdatePod)
    			switch {
    			case update.WorkType == TerminatedPod:
    				err = p.podSyncer.SyncTerminatedPod(ctx, update.Options.Pod, status)
    
    			case update.WorkType == TerminatingPod:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    // uses a MOV pseudo-instruction.
    func instructionsForMOV(p *obj.Prog) []*instruction {
    	ins := instructionForProg(p)
    	inss := []*instruction{ins}
    
    	if p.Reg != 0 {
    		p.Ctxt.Diag("%v: illegal MOV instruction", p)
    		return nil
    	}
    
    	switch {
    	case p.From.Type == obj.TYPE_CONST && p.To.Type == obj.TYPE_REG:
    		// Handle constant to register moves.
    		if p.As != AMOV {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top