Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 154 for absorbed (0.14 sec)

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

         *
         * @param target Compilation target platform.
         *
         * @param allowedErrorFilter Filter for the allowed errors.
         * Compilation will be aborted if there are errors that this filter rejects.
         *
         * @return Compilation result.
         *
         * The function rethrows exceptions from the compiler, wrapped in [KaCodeCompilationException].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. cmd/object_api_suite_test.go

    	}
    
    	uploadContent := "The specified multipart upload does not exist. The upload ID might be invalid, or the multipart upload might have been aborted or completed."
    	var opts ObjectOptions
    	// check before paging occurs.
    	for i := 0; i < 5; i++ {
    		key := "obj" + strconv.Itoa(i)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. src/syscall/tables_wasip1.go

    	EBADMSG:         "Trying to read unreadable message",
    	EBUSY:           "Device or resource busy",
    	ECANCELED:       "Operation canceled.",
    	ECHILD:          "No child processes",
    	ECONNABORTED:    "Connection aborted",
    	ECONNREFUSED:    "Connection refused",
    	ECONNRESET:      "Connection reset by peer",
    	EDEADLK:         "Deadlock condition",
    	EDESTADDRREQ:    "Destination address required",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceErrorHandlingIntegrationTest.groovy

                }
            }
            settingsFile << withHttpBuildCacheServer()
            String errorPattern = /(Broken pipe|Connection reset|Software caused connection abort: socket write error|An established connection was aborted by the software in your host machine|127.0.0.1:.+ failed to respond)/
    
            when:
            executer.withStackTraceChecksDisabled()
            withBuildCache().run "customTask"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Absorb 'rotate then insert selected bits [into zero]' into left shift.
    (SLDconst (RISBGZ x {r}) [c])
      && s390x.NewRotateParams(0, 63-c, c).InMerge(r.OutMask()) != nil
      => (RISBGZ x {(*s390x.NewRotateParams(0, 63-c, c).InMerge(r.OutMask())).RotateLeft(r.Amount)})
    
    // Absorb 'rotate then insert selected bits [into zero]' into right shift.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  6. src/go/internal/srcimporter/srcimporter_test.go

    		return
    	}
    	t.Logf("import %q: %v", path, time.Since(t0))
    }
    
    // walkDir imports the all the packages with the given path
    // prefix recursively. It returns the number of packages
    // imported and whether importing was aborted because time
    // has passed endTime.
    func walkDir(t *testing.T, path string, endTime time.Time) (int, bool) {
    	if time.Now().After(endTime) {
    		t.Log("testing time used up")
    		return 0, true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. src/syscall/tables_js.go

    	ENETDOWN        Errno = 100 /* Network interface is not configured */
    	ENETUNREACH     Errno = 101 /* Network is unreachable */
    	ENETRESET       Errno = 102
    	ECONNABORTED    Errno = 103 /* Connection aborted */
    	ECONNRESET      Errno = 104 /* Connection reset by peer */
    	ENOBUFS         Errno = 105 /* No buffer space available */
    	EISCONN         Errno = 106 /* Socket is already connected */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/cni-watcher.go

    			name, namespace, retries, maxStaleRetries)
    		if !sleep.UntilContext(s.ctx, time.Duration(msInterval)*time.Millisecond) {
    			return nil, fmt.Errorf("aborted")
    		}
    	}
    	if err != nil {
    		return nil, fmt.Errorf("failed to get pod %s/%s: %v", namespace, name, err)
    	}
    
    	// This shouldn't happen - we only trigger this when a pod is added to ambient.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RetryConditions.groovy

                if (getRootCauseMessage(failure) == "An existing connection was forcibly closed by the remote host" ||
                    getRootCauseMessage(failure) == "An established connection was aborted by the software in your host machine" ||
                    getRootCauseMessage(failure) == "Connection refused: no further information") {
    
                    if (!checkDaemonLogs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

          nearest_cluster.ops.insert(&op);
          op_to_cluster_map[&op] = &nearest_cluster;
          continue;
        }
    
        // If nearest cluster of same target can not absorb `op`, then that
        // cluster needs to be finalized by inserting into the final cluster map
        // that contains all operations in clusters.
        all_clusters[target_name].push_back(nearest_cluster);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top