Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 104 for addPass (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    With this configuration the test JVM will behave just like when passing the `--debug-jvm` argument but it will listen on port 4455.
    
    To debug the test process remotely via network,  the `host` needs to be set to the machine's IP address or `"*"` (listen on all interfaces).
    
    [[sec:java_test_fixtures]]
    == Using test fixtures
    
    === Producing and using test fixtures within a single project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// the `service` field instead. The host might be resolved via external
    	// DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
    	// in-cluster DNS as that would be a layering violation). `host` may
    	// also be an IP address.
    	//
    	// Please note that using `localhost` or `127.0.0.1` as a `host` is
    	// risky unless you take great care to run this webhook on all hosts
    	// which run an apiserver which might need to make calls to this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    		return muxRouter
    	}
    	registerAPIRouter(muxRouter)
    	muxRouter.Use(globalMiddlewares...)
    	return muxRouter
    }
    
    // generateTLSCertKey creates valid key/cert with registered DNS or IP address
    // depending on the passed parameter. That way, we can use tls config without
    // passing InsecureSkipVerify flag.  This code is a simplified version of
    // https://golang.org/src/crypto/tls/generate_cert.go
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(1, ((List<?>) pom.getValue("ciManagement/notifiers")).size());
            assertEquals("irc", pom.getValue("ciManagement/notifiers[1]/type"));
            assertEquals("ci@", pom.getValue("ciManagement/notifiers[1]/address"));
            assertEquals(Boolean.TRUE, pom.getValue("ciManagement/notifiers[1]/sendOnError"));
            assertEquals(Boolean.FALSE, pom.getValue("ciManagement/notifiers[1]/sendOnFailure"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    			}
    
    		case obj.NAME_EXTERN,
    			obj.NAME_STATIC:
    			s := a.Sym
    			if s == nil {
    				return C_GOK
    			}
    
    			c.instoffset = a.Offset
    			if s.Type == objabi.STLSBSS {
    				return C_STCON // address of TLS variable
    			}
    			return C_LECON
    
    		case obj.NAME_AUTO:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// the `service` field instead. The host might be resolved via external
    	// DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
    	// in-cluster DNS as that would be a layering violation). `host` may
    	// also be an IP address.
    	//
    	// Please note that using `localhost` or `127.0.0.1` as a `host` is
    	// risky unless you take great care to run this webhook on all hosts
    	// which run an apiserver which might need to make calls to this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    		},
    		// in reality this is a misconfigured cluster
    		// i.e user is not using dual stack and have PodIP == v4 and ServiceIP==v6
    		// previously controller could assign wrong ip to endpoint address
    		// with gate removed. this is no longer the case. this is *not* behavior change
    		// because previously things would have failed in kube-proxy anyway (due to editing wrong iptables).
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    			}
    		})
    	}
    }
    
    func fprintStack(w io.Writer, stk []*profile.Location) {
    	if len(stk) == 0 {
    		fmt.Fprintf(w, " (stack empty)")
    	}
    	for _, loc := range stk {
    		fmt.Fprintf(w, " %#x", loc.Address)
    		fmt.Fprintf(w, " (")
    		for i, line := range loc.Line {
    			if i > 0 {
    				fmt.Fprintf(w, " ")
    			}
    			fmt.Fprintf(w, "%s:%d", line.Function.Name, line.Line)
    		}
    		fmt.Fprintf(w, ")")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    	return ps.serviceAccounts[serviceAccountKey{
    		hostname:  hostname,
    		namespace: namespace,
    	}]
    }
    
    // SupportsTunnel checks if a given IP address supports tunneling.
    // This currently only accepts workload IPs as arguments; services will always return "false".
    func (ps *PushContext) SupportsTunnel(n network.ID, ip string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	os.Setenv("GOVCS", "*:all")
    }
    
    var (
    	canRace = false // whether we can run the race detector
    	canMSan = false // whether we can run the memory sanitizer
    	canASan = false // whether we can run the address sanitizer
    )
    
    var (
    	goHostOS, goHostArch string
    	cgoEnabled           string // raw value from 'go env CGO_ENABLED'
    )
    
    // netTestSem is a semaphore limiting the number of tests that may use the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top