Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 89 for Everything (0.31 sec)

  1. src/go/types/expr.go

    		// types, which are comparatively rare.
    
    	default:
    		panic(fmt.Sprintf("%s: unknown expression type %T", check.fset.Position(e.Pos()), 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
    - 49.7K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    				Spec: api.PodSpec{},
    			},
    			fieldSelector: fields.ParseSelectorOrDie("spec.hostNetwork=true"),
    			expectMatch:   false,
    		},
    	}
    	for _, testCase := range testCases {
    		m := MatchPod(labels.Everything(), testCase.fieldSelector)
    		result, err := m.Matches(testCase.in)
    		if err != nil {
    			t.Errorf("Unexpected error %v", err)
    		}
    		if result != testCase.expectMatch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs/changelogs/changelog_3x.md

        `MultipartBody`, `MultipartBody.Part`, and `MultipartBody.Builder`.
    
     *  **The Apache HTTP client and HttpURLConnection APIs are deprecated.** They
        continue to work as they always have, but we're moving everything to the new
        OkHttp 3 API. The `okhttp-apache` and `okhttp-urlconnection` modules should
        be only be used to accelerate a transition to OkHttp's request/response API.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top