Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for notified (0.26 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * assume that connectivity has been lost. When this happens on a web socket the connection is
         * canceled and its listener is [notified][WebSocketListener.onFailure]. When it happens on an
         * HTTP/2 connection the connection is closed and any calls it is carrying
         * [will fail with an IOException][java.io.IOException].
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        for (;;) {
          pthread_mutex_lock(&mutex_);
          const bool notified = notified_;
          pthread_mutex_unlock(&mutex_);
          if (notified)
            break;
          SleepMilliseconds(10);
        }
      }
    
     private:
      pthread_mutex_t mutex_;
      bool notified_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification);
    };
    
    // As a C-function, ThreadFuncWithCLinkage cannot be templated itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        for (;;) {
          pthread_mutex_lock(&mutex_);
          const bool notified = notified_;
          pthread_mutex_unlock(&mutex_);
          if (notified)
            break;
          SleepMilliseconds(10);
        }
      }
    
     private:
      pthread_mutex_t mutex_;
      bool notified_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification);
    };
    
    // As a C-function, ThreadFuncWithCLinkage cannot be templated itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		if loggerV := logger.V(7); loggerV.Enabled() {
    			// Log more information.
    			loggerV.Info("claim for pod got modified where the pod doesn't care", "pod", klog.KObj(pod), "claim", klog.KObj(modifiedClaim), "diff", cmp.Diff(originalClaim, modifiedClaim))
    		} else {
    			logger.V(6).Info("claim for pod got modified where the pod doesn't care", "pod", klog.KObj(pod), "claim", klog.KObj(modifiedClaim))
    		}
    		return framework.QueueSkip, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. cmd/iam.go

    		msgs = append(msgs, color.Bold(arn))
    	}
    
    	logger.Info(fmt.Sprintf("%s %s", color.Blue("IAM Roles:"), strings.Join(msgs, " ")))
    }
    
    // HasWatcher - returns if the IAM system has a watcher to be notified of
    // changes.
    func (sys *IAMSys) HasWatcher() bool {
    	return sys.store.HasWatcher()
    }
    
    func (sys *IAMSys) loadWatchedEvent(ctx context.Context, event iamWatchEvent) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:requirements:build_listeners]]
    === Using build listeners
    
    Plugins and build scripts must not register any build listeners.
    That is listeners registered at configuration time that get notified at execution time.
    For example a `BuildListener` or a `TaskExecutionListener`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    			// has been synced at least once, the value of status.activeUpdate will be the fallback for
    			// the next sync.
    			p.requeueLastPodUpdate(uid, status)
    			klog.V(4).InfoS("Pod is orphaned and still terminating, notified the pod worker", "podUID", uid)
    			return false
    		}
    	}
    
    	if status.restartRequested {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	}
    
    	return json.Marshal(patchMap)
    }
    
    func ItemAddedToModifiedSlice(original, modified string) bool { return original > modified }
    
    func ItemRemovedFromModifiedSlice(original, modified string) bool { return original < modified }
    
    func ItemMatchesOriginalAndModifiedSlice(original, modified string) bool { return original == modified }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	}
    
    	// Check that we receive a modified watch event. This check also
    	// indirectly ensures that the cache is synced. This is important
    	// when testing with the Cacher since we may have to allow for slow
    	// processing by allowing updates to propagate to the watch cache.
    	// This allows for that.
    	testCheckResult(t, w, watch.Event{Type: watch.Modified, Object: out})
    	w.Stop()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/net/http/fs_test.go

    		t.Fatalf("Got body %q; want %q", b, indexContents)
    	}
    	res.Body.Close()
    
    	lastMod := res.Header.Get("Last-Modified")
    	if lastMod != fileModStr {
    		t.Fatalf("initial Last-Modified = %q; want %q", lastMod, fileModStr)
    	}
    
    	req, _ := NewRequest("GET", ts.URL, nil)
    	req.Header.Set("If-Modified-Since", lastMod)
    
    	c := ts.Client()
    	res, err = c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top