Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 86 for Everything (0.18 sec)

  1. pkg/proxy/iptables/proxier.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package iptables
    
    //
    // NOTE: this needs to be tested in e2e since it uses iptables for everything.
    //
    
    import (
    	"bytes"
    	"context"
    	"crypto/sha256"
    	"encoding/base32"
    	"fmt"
    	"net"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		Attempt:           attempt,
    		ContainersToStart: []int{},
    		ContainersToKill:  make(map[kubecontainer.ContainerID]containerToKillInfo),
    	}
    
    	// If we need to (re-)create the pod sandbox, everything will need to be
    	// killed and recreated, and init containers should be purged.
    	if createPodSandbox {
    		if !shouldRestartOnFailure(pod) && attempt != 0 && len(podStatus.ContainerStatuses) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/expr.go

    		// performance issue because we only reach here for composite literal
    		// types, which are comparatively rare.
    
    	default:
    		panic(fmt.Sprintf("%s: unknown expression type %T", atPos(e), e))
    	}
    
    	// everything went well
    	x.expr = e
    	return expression
    
    Error:
    	x.mode = invalid
    	x.expr = e
    	return statement // avoid follow-up errors
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:java_testing_modular]]
    == Testing Java Modules
    
    If you are <<java_library_plugin.adoc#java_library_plugin,developing Java Modules>>, everything described in this chapter still applies and any of the supported test frameworks can be used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    						e.Result.ClusterMatched = ""
    						e.Result.VirtualHostMatched = util.BlackHole
    					}
    					// TCP without a VIP will capture everything.
    					// Auto without a VIP is similar, but HTTP happens to work because routing is done on header
    					if call.Port == 82 || (call.Port == 81 && !call.IsHTTP()) {
    						e.Result.Error = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // In the example: http://<host>/<path>?<searchpart> -> backend where
    // where parts of the url correspond to RFC 3986, this resource will be used
    // to match against everything after the last '/' and before the first '?'
    // or '#'.
    type HTTPIngressRuleValue struct {
    	// A collection of paths that map requests to backends.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. cmd/object-api-multipart_test.go

    				},
    				{
    					Object:   objectNames[0],
    					UploadID: uploadIDs[3],
    				},
    			},
    		},
    
    		// Operations on bucket 2.
    		// listMultipartResults - 26.
    		// checking listing everything.
    		{
    			MaxUploads:  100,
    			IsTruncated: false,
    
    			Uploads: []MultipartInfo{
    				{
    					Object:   objectNames[0],
    					UploadID: uploadIDs[4],
    				},
    				{
    					Object:   objectNames[1],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [source,kotlin]
    ----
    enableFeaturePreview("STABLE_PUBLISHING")
    ----
    =====
    ====
    
    We recommend doing a test run with a local repository to see whether all artifacts still have the expected coordinates.
    In most cases everything should work as before and you are done.
    However, your publishing block may rely on the implicit deferred configuration, particularly if it relies on values that may change during the configuration phase of the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

                throw SmbException.wrap(e);
            }
        }
    
    
        @Override
        public String getName () {
            return this.fileLocator.getName();
        }
    
    
        /**
         * Everything but the last component of the URL representing this SMB
         * resource is effectively it's parent. The root URL <code>smb://</code>
         * does not have a parent. In this case <code>smb://</code> is returned.
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. src/regexp/syntax/parse.go

    				p.repeats *= int64(n)
    			}
    		}
    		if int64(p.numRegexp) < maxSize/p.repeats {
    			return
    		}
    
    		// We need to start tracking size.
    		// Make the map and belatedly populate it
    		// with info about everything we've constructed so far.
    		p.size = make(map[*Regexp]int64)
    		for _, re := range p.stack {
    			p.checkSize(re)
    		}
    	}
    
    	if p.calcSize(re, true) > maxSize {
    		panic(ErrLarge)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top