Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 247 for Replayed (0.12 sec)

  1. manifests/addons/dashboards/pilot-dashboard.gen.json

             "collapsed": false,
             "gridPos": {
                "h": 1,
                "w": 24,
                "x": 0,
                "y": 0
             },
             "id": 1,
             "panels": [ ],
             "title": "Deployed Versions",
             "type": "row"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/shape_inference.cc

                    << context->DebugString(handle);
          }
        }
    
        int index = -1;
        if (n->type_string() == "_Arg") {
          // NOTE: during runtime, Placeholder ops will be replaced as `_Arg` ops.
          // And Args must have `index` attribute.
          TF_RETURN_IF_ERROR(GetNodeAttr(n->attrs(), "index", &index));
        } else if (n->type_string() == "Placeholder") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/syscall/mksyscall.pl

    # This program reads a file containing function prototypes
    # (like syscall_darwin.go) and generates system call bodies.
    # The prototypes are marked by lines beginning with "//sys"
    # and read like func declarations if //sys is replaced by func, but:
    #	* The parameter lists must give a name for each argument.
    #	  This includes return parameters.
    #	* The parameter lists must give a type for each argument:
    #	  the (x, y, z int) shorthand is not allowed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                        FileUpToDateStatus.Removed -> "file '${displayNameOf(file)}' has been removed"
                        FileUpToDateStatus.TypeChanged -> "file '${displayNameOf(file)}' has been replaced by a directory"
                        FileUpToDateStatus.Unchanged -> null
                    }
                }
                is ConfigurationCacheFingerprint.DirectoryChildren -> input.run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. src/cmd/distpack/pack.go

    //	mkdir -p /tmp/goproxy/golang.org/toolchain/
    //	ln -sf $(pwd)/../pkg/distpack /tmp/goproxy/golang.org/toolchain/@v
    //	GOPROXY=file:///tmp/goproxy GOTOOLCHAIN=$(sed 1q ../VERSION) gotip version
    //
    // gotip can be replaced with an older released Go version once there is one.
    // It just can't be the one make.bash built, because it knows it is already that
    // version and will skip the download.
    package main
    
    import (
    	"archive/tar"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/volume_manager_test.go

    	podManager.SetPods([]*v1.Pod{pod})
    
    	// Fake node status update
    	go simulateVolumeInUseUpdate(
    		v1.UniqueVolumeName(node.Status.VolumesAttached[0].Name),
    		stopCh,
    		manager)
    
    	// delayed claim binding
    	go delayClaimBecomesBound(kubeClient, claim.GetNamespace(), claim.ObjectMeta.Name)
    
    	err = wait.Poll(100*time.Millisecond, 1*time.Second, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

            # use kubectl to create dns addon
            if ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" --namespace=kube-system create -f dns.yaml ; then
                echo "${DNS_ADDON} addon successfully deployed."
            else
    		echo "Something is wrong with your DNS input"
    		cat dns.yaml
    		exit 1
            fi
            rm dns.yaml
        fi
    }
    
    function start_nodelocaldns {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/fsys/fsys.go

    		// The file is deleted explicitly in the Replace map,
    		// or implicitly because one of its parent directories was
    		// replaced by a file.
    		return nil, &fs.PathError{
    			Op:   "Open",
    			Path: path,
    			Err:  fmt.Errorf("file %s does not exist: parent directory %s is replaced by a file in overlay", path, parent),
    		}
    	}
    	return os.OpenFile(cpath, flag, perm)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    builds above a certain size include parallel sections to utilize multiple agents. With parallel pipelines you can measure the wall-clock time it takes for a set of changes to go from having been pushed to version control to being built, verified and deployed. The build cache's effect in this case can be measured in the reduction of the time developers have to wait for feedback from CI.
    
    You can also measure the cumulative time your build agents spent building a changeset, which will give you...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

       * ExecutionException} and {@link RuntimeException}), both immediate and delayed. We use each
       * possible pair of these futures in {@link FuturesTest#runExtensiveMergerTest}.
       *
       * <p>Each test requires a new {@link TestFutureBatch} because we need new delayed futures each
       * time, as the old delayed futures were completed as part of the old test.
       */
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top