Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,217 for inform (0.18 sec)

  1. src/net/http/httptest/server_test.go

    		if err != nil {
    			t.Log(err)
    			return
    		}
    		resp.Body.Close()
    	}()
    
    	wg.Add(1)
    	conn := <-hijacked
    	go func(conn net.Conn) {
    		defer wg.Done()
    		// Close the connection and then inform the Server that
    		// we closed it.
    		conn.Close()
    		ts.Config.ConnState(conn, http.StateClosed)
    	}(conn)
    
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		ts.Close()
    	}()
    	wg.Wait()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. licenses/github.com/hashicorp/go-version/LICENSE

         restrict the recipients’ rights in the Source Code Form.
    
    3.2. Distribution of Executable Form
    
         If You distribute Covered Software in Executable Form then:
    
         a. such Covered Software must also be made available in Source Code Form,
            as described in Section 3.1, and You must inform recipients of the
            Executable Form how they can obtain a copy of such Source Code Form by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

         Form.
    
    3.2. Distribution of Executable Form
    
         If You distribute Covered Software in Executable Form then:
    
         a. such Covered Software must also be made available in Source Code Form,
            as described in Section 3.1, and You must inform recipients of the
            Executable Form how they can obtain a copy of such Source Code Form by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 20:21:32 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods.go

    			fmt.Printf("[upgrade/staticpods] Current and new manifests of %s are equal, skipping upgrade\n", component)
    			return nil
    		}
    		klog.V(4).Infof("[upgrade/staticpods] Current and new manifests of %s are equal, but %s will be upgraded\n",
    			component, constants.KubeAPIServer)
    	} else {
    		klog.V(4).Infof("Pod manifest files diff:\n%s\n", diff)
    	}
    
    	// if certificate renewal should be performed
    	if certsRenewMgr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/errwrap/LICENSE

         restrict the recipients’ rights in the Source Code Form.
    
    3.2. Distribution of Executable Form
    
         If You distribute Covered Software in Executable Form then:
    
         a. such Covered Software must also be made available in Source Code Form,
            as described in Section 3.1, and You must inform recipients of the
            Executable Form how they can obtain a copy of such Source Code Form by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

     * </ul>
     * The general strategy is that the Lock Holder keeps locks open as long as there is no Lock Requester. This is,
     * because each lock open/close action requires File I/O which is expensive.
     * <p>
     * The Lock Owner will inform this contention handler that it holds the lock via {@link #start(long, Consumer)}.
     * There it provides an action that this handler can call to release the lock, in case a release is requested.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

          sink.writeInt(lastGoodStreamId)
          sink.writeInt(errorCode.httpCode)
          if (debugData.isNotEmpty()) {
            sink.write(debugData)
          }
          sink.flush()
        }
      }
    
      /**
       * Inform peer that an additional `windowSizeIncrement` bytes can be sent on `streamId`, or the
       * connection if `streamId` is zero.
       */
      @Throws(IOException::class)
      fun windowUpdate(
        streamId: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/sync/mutex.go

    		// so we won't be able to acquire the mutex anyway.
    		if old&(mutexLocked|mutexStarving) == mutexLocked && runtime_canSpin(iter) {
    			// Active spinning makes sense.
    			// Try to set mutexWoken flag to inform Unlock
    			// to not wake other blocked goroutines.
    			if !awoke && old&mutexWoken == 0 && old>>mutexWaiterShift != 0 &&
    				atomic.CompareAndSwapInt32(&m.state, old, old|mutexWoken) {
    				awoke = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                    }
                }
            }
    
            if (version != null) {
                // if LATEST worked out of the box, remain silent as today, otherwise inform user about search result
                if (searchPerformed) {
                    logger.info("Selected plugin {}:{}:{}", request.getGroupId(), request.getArtifactId(), version);
                }
                result.setVersion(version);
                result.setRepository(repo);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    		ctx, cancel = context.WithTimeout(ctx, time.Duration(*h.TimeoutSeconds)*time.Second)
    		defer cancel()
    	}
    
    	r := client.Post().Body(request)
    
    	// if the context has a deadline, set it as a parameter to inform the backend
    	if deadline, hasDeadline := ctx.Deadline(); hasDeadline {
    		// compute the timeout
    		if timeout := time.Until(deadline); timeout > 0 {
    			// if it's not an even number of seconds, round up to the nearest second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top