Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for targeted (0.12 sec)

  1. pkg/workloadapi/workload.proto

        // is included, along with potential extra TLV headers:
        // 0xD0 - The SPIFFE identity of the source workload
        // 0xD1 - The FQDN or Hostname of the targeted Service
        PROXY = 1;
      }
    
      // A target natively handles this type of traffic.  
      Protocol protocol = 1;
    
      // optional: if set, traffic should be sent to this port after the last zTunnel hop
      uint32 port = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    It takes a comma (`,`) separated list of module notations.
    In this mode, the existing lock state is still used as input to resolution, filtering out the modules targeted by the update.
    
    ----
    ❯ gradle dependencies --update-locks org.apache.commons:commons-lang3,org.slf4j:slf4j-api
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. tests/integration/pilot/ingress_test.go

    						}
    						return nil
    					}, retry.Timeout(time.Second*90))
    				}
    			})
    
    			// setup another ingress pointing to a different route; the ingress will have an ingress class that should be targeted at first
    			const updateIngressName = "update-test-ingress"
    			if err := t.ConfigIstio().YAML(apps.Namespace.Name(), ingressClassConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    > a local machine without necessary parallelization and caching.
    > The full test suites are executed on the CI instance for multiple configurations,
    > and you can rely on it after doing initial sanity check and targeted local testing.
    
    ### Submitting Your Change
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func.go

    		sb = f.Entry.NewValue0(initpos.WithNotStmt(), OpSB, f.Config.Types.Uintptr)
    	}
    	if sp == nil {
    		sp = f.Entry.NewValue0(initpos.WithNotStmt(), OpSP, f.Config.Types.Uintptr)
    	}
    	return
    }
    
    // useFMA allows targeted debugging w/ GOFMAHASH
    // If you have an architecture-dependent FP glitch, this will help you find it.
    func (f *Func) useFMA(v *Value) bool {
    	if !f.Config.UseFMA {
    		return false
    	}
    	if base.FmaHash == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    		if !target.IsAIX() && !target.IsDarwin() && !target.IsSolaris() && !target.IsOpenbsd() && rs != 0 && rst == sym.SDYNIMPORT && !target.IsDynlinkingGo() && !ldr.AttrSubSymbol(rs) {
    			if !(target.IsPPC64() && target.IsExternal() && ldr.SymName(rs) == ".TOC.") {
    				st.err.Errorf(s, "unhandled relocation for %s (type %d (%s) rtype %d (%s))", ldr.SymName(rs), rst, rst, rt, sym.RelocName(target.Arch, rt))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. src/os/exec/exec.go

    //		log.Fatal(err)
    //	}
    //
    // Setting the environment variable GODEBUG=execerrdot=0
    // disables generation of ErrDot entirely, temporarily restoring the pre-Go 1.19
    // behavior for programs that are unable to apply more targeted fixes.
    // A future version of Go may remove support for this variable.
    //
    // Before adding such overrides, make sure you understand the
    // security implications of doing so.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	//     again, even after timer expiration.
    	//
    	// When the P starts running again, the mask should be set, as a timer may be
    	// added at any time.
    	//
    	// TODO(prattmic): Additional targeted updates may improve the above cases.
    	// e.g., updating the mask when stealing a timer.
    	timerpMask pMask
    )
    
    // goarmsoftfp is used by runtime/cgo assembly.
    //
    //go:linkname goarmsoftfp
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    	// Standard PROXY source and destination information
    	// is included, along with potential extra TLV headers:
    	// 0xD0 - The SPIFFE identity of the source workload
    	// 0xD1 - The FQDN or Hostname of the targeted Service
    	ApplicationTunnel_PROXY ApplicationTunnel_Protocol = 1
    )
    
    // Enum value maps for ApplicationTunnel_Protocol.
    var (
    	ApplicationTunnel_Protocol_name = map[int32]string{
    		0: "NONE",
    		1: "PROXY",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. internal/logger/targets.go

    //	group2 contains the remaining targets
    func splitTargets(targets []Target, t types.TargetType) (group1 []Target, group2 []Target) {
    	for _, target := range targets {
    		if target.Type() == t {
    			group1 = append(group1, target)
    		} else {
    			group2 = append(group2, target)
    		}
    	}
    	return
    }
    
    func cancelTargets(targets []Target) {
    	for _, target := range targets {
    		go target.Cancel()
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top