Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for Backward (0.18 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // this service.
      // +optional
      optional string path = 3;
    
      // If specified, the port on the service that hosting webhook.
      // Default to 443 for backward compatibility.
      // `port` should be a valid port number (1-65535, inclusive).
      // +optional
      optional int32 port = 4;
    }
    
    // TypeChecking contains results of type checking the expressions in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/time/time_test.go

    		// 15 Sep 1991 - Daylight Saving Time Ended
    		// When local daylight time of "Asia/Shanghai" was about to reach
    		// Sunday, 15 September 1991, 02:00:00 clocks were turned backward 1 hour to
    		// Sunday, 15 September 1991, 01:00:00 local standard time instead.
    		// The UTC time was 14 September 1991, 17:00:00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. cmd/iam.go

    		} else {
    			// We use the group DN returned by the LDAP server (this may not
    			// equal the input group name, but we assume it is canonical).
    			dn = dnResult.NormDN
    		}
    		isGroup = true
    	}
    
    	// Backward compatibility in detaching non-normalized DNs.
    	if !isAttach {
    		var oldDN string
    		if isGroup {
    			oldDN = r.Group
    		} else {
    			oldDN = r.User
    		}
    		if oldDN != dn {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    found:
    	// At this point, r is the first value in a that we find by walking backwards.
    	// if we return anything, r will be it.
    	r := b
    
    	// Keep going, counting the other a's that we find. They must all dominate r.
    	na := 0
    	for d > 0 {
    		for _, x := range a {
    			if b == x.Block {
    				na++
    			}
    		}
    		if na == len(a) {
    			// Found all of a in a backwards walk. We can return r.
    			return r
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// this service.
    	// +optional
    	Path *string `json:"path,omitempty" protobuf:"bytes,3,opt,name=path"`
    
    	// If specified, the port on the service that hosting webhook.
    	// Default to 443 for backward compatibility.
    	// `port` should be a valid port number (1-65535, inclusive).
    	// +optional
    	Port *int32 `json:"port,omitempty" protobuf:"varint,4,opt,name=port"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/asm.go

    				c.ctxt.Diag("zero-width instruction\n%v", p)
    			}
    		}
    
    		pc += int64(m)
    	}
    
    	c.cursym.Size = pc
    
    	// mark loop entry instructions for padding
    	// loop entrances are defined as targets of backward branches
    	for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		if q := p.To.Target(); q != nil && q.Pc < p.Pc {
    			q.Mark |= branchLoopHead
    		}
    	}
    
    	// Run these passes until convergence.
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    // they follow the rules for passing pointers between Go and C.
    // This reports whether the package needs to import unsafe as _cgo_unsafe.
    func (p *Package) rewriteCalls(f *File) bool {
    	needsUnsafe := false
    	// Walk backward so that in C.f1(C.f2()) we rewrite C.f2 first.
    	for _, call := range f.Calls {
    		if call.Done {
    			continue
    		}
    		start := f.offset(call.Call.Pos())
    		end := f.offset(call.Call.End())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    			if len(kubeletFlags.KubeletConfigFile) > 0 || len(kubeletFlags.KubeletDropinConfigDirectory) > 0 {
    				// We must enforce flag precedence by re-parsing the command line into the new object.
    				// This is necessary to preserve backwards-compatibility across binary upgrades.
    				// See issue #56171 for more details.
    				if err := kubeletConfigFlagPrecedence(kubeletConfig, args); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The embedded Kotlin has been updated from 1.8.20 to link:https://github.com/JetBrains/kotlin/releases/tag/v1.9.0[Kotlin 1.9.0].
    The Kotlin language and API levels for the Kotlin DSL are still set to 1.8 for backwards compatibility.
    See the release notes for link:https://github.com/JetBrains/kotlin/releases/tag/v1.8.22[Kotlin 1.8.22] and link:https://github.com/JetBrains/kotlin/releases/tag/v1.8.21[Kotlin 1.8.21].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. src/os/os_test.go

    			if strings.Contains(string(mounts), "noatime") {
    				t.Logf("AccessTime didn't go backwards, but see a filesystem mounted noatime; ignoring. Issue 19293.")
    			} else {
    				t.Logf("AccessTime didn't go backwards; was=%v, after=%v (Ignoring on NetBSD, assuming noatime, Issue 19293)", at, pat)
    			}
    		default:
    			t.Errorf("AccessTime didn't go backwards; was=%v, after=%v", at, pat)
    		}
    	}
    
    	if !pmt.Before(mt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top