Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for unusual (0.61 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }
    
        private val FirPropertyAccessExpression.correspondingNameReference: KtNameReferenceExpression?
            get() {
                val nameReference = when (val sourcePsi = psi) {
                    // usual `foo.bar.baz` case
                    is KtDotQualifiedExpression -> sourcePsi.selectorExpression
    
                    // short `foo` case, or implicit invoke call like `foo.bar.baz()`
                    else -> sourcePsi
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    	// services to the port. The user could have specified a sidecar
    	// resource with one or more explicit ports and then added a catch
    	// all listener, implying add all other ports as usual. When we are
    	// iterating through the services for a catchAll egress listener,
    	// the caller would have set the locked bit for each listener Entry
    	// in the map.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache_test.go

    		if err := cache.AddPod(logger, podToAdd); err != nil {
    			t.Errorf("AddPod failed: %v", err)
    		}
    	}
    
    	snapshot := cache.Dump()
    	if len(snapshot.Nodes) != len(cache.nodes) {
    		t.Errorf("Unequal number of nodes in the cache and its snapshot. expected: %v, got: %v", len(cache.nodes), len(snapshot.Nodes))
    	}
    	for name, ni := range snapshot.Nodes {
    		nItem := cache.nodes[name]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	"flag"
    	"fmt"
    	"io"
    	"io/fs"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    )
    
    // Initialization for any invocation.
    
    // The usual variables.
    var (
    	goarch           string
    	gorootBin        string
    	gorootBinGo      string
    	gohostarch       string
    	gohostos         string
    	goos             string
    	goarm            string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Futures.java

       * expect, but there are some subtleties. First, we do guarantee that, if the output future at
       * index n is done, the output future at index n-1 is also done. (But as usual with futures, some
       * listeners for future n may complete before some for future n-1.) However, it is possible, if
       * one input completes with result X and another later with result Y, for Y to come before X in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    synthetic \"Bookmark\" event  will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch`...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. src/time/time.go

    //
    //	yyyy-mm-dd hh:mm:ss + nsec nanoseconds
    //
    // in the appropriate zone for that time in the given location.
    //
    // The month, day, hour, min, sec, and nsec values may be outside
    // their usual ranges and will be normalized during the conversion.
    // For example, October 32 converts to November 1.
    //
    // A daylight savings time transition skips or repeats times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    }
    
    // The []journal contains all the different versions of the object.
    //
    // This array can have 3 kinds of objects:
    //
    // ``object``: If the object is uploaded the usual way: putobject, multipart-put, copyobject
    //
    // ``delete``: This is the delete-marker
    //
    // ``legacyObject``: This is the legacy object in xlV1 format, preserved until its overwritten
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. gradle/verification-metadata.xml

       See https://docs.gradle.org/current/userguide/dependency_verification.html#sec:add-ascii-keyring
    
       You have to update all entries that have the "Generated by Gradle" origin. The usual reasons are:
       * Artifact is not signed
       * Needed because PGP signature verification failed!
       * Key couldn't be downloaded
    
       You should then edit the origin to be "Verified". Note that editing those entries means you
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    The Property instances that are returned by these methods are no longer automatically registered as inputs or outputs of the task.
    The Property instances need to be declared as inputs or outputs in the usual ways, such as attaching annotations such as `@OutputFile` or using the runtime API to register the property.
    
    For example, you could previously use the following syntax and have both outputFile instances registered as declared outputs:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top