Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for __callback (0.24 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    func RequestKey(keyType string, description string, callback string, destRingid int) (id int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(keyType)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(description)
    	if err != nil {
    		return
    	}
    	var _p2 *byte
    	_p2, err = BytePtrFromString(callback)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/go/build/build.go

    		//
    		line = strings.TrimSpace(line)
    		if len(line) < 5 || line[:4] != "#cgo" || (line[4] != ' ' && line[4] != '\t') {
    			continue
    		}
    
    		// #cgo (nocallback|noescape) <function name>
    		if fields := strings.Fields(line); len(fields) == 3 && (fields[1] == "nocallback" || fields[1] == "noescape") {
    			continue
    		}
    
    		// Split at colon.
    		line, argstr, ok := strings.Cut(strings.TrimSpace(line[4:]), ":")
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	// scan is to hide those dead frames, so the scan is still okay:
    	// what's left on the panic stack are exactly (and only) the dead frames.
    	//
    	// We require callback != nil here because only when callback != nil
    	// do we know that gentraceback is being called in a "must be correct"
    	// context as opposed to a "best effort" context. The tracebacks with
    	// callbacks only happen when everything is stopped nicely.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    						res = append(res, disk)
    					}
    				}
    			}
    		}
    	}
    	return res
    }
    
    // GetRawData will return all files with a given raw path to the callback.
    // Errors are ignored, only errors from the callback are returned.
    // For now only direct file paths are supported.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// while the scheduler has allocated it and the corresponding object
    	// update from the apiserver has not been processed by the claim
    	// informer callbacks. Claims get added here in PreBind and removed by
    	// the informer callback (based on the "newer than" comparison in the
    	// assume cache).
    	//
    	// It uses cache.MetaNamespaceKeyFunc to generate object names, which
    	// therefore are "<namespace>/<name>".
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    channel.queue_bind(exchange='bucketevents',
                       queue=queue_name)
    
    print(' [*] Waiting for logs. To exit press CTRL+C')
    
    def callback(ch, method, properties, body):
        print(" [x] %r" % body)
    
    channel.basic_consume(callback,
                          queue=queue_name,
                          no_ack=False)
    
    channel.start_consuming()
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        }
      }
    
      // Drop all the args that have to be skipped.
      for (Value arg : skipped_args) hoister.DropResource(arg);
    
      hoister.ReplaceResourceLoads(/*read_only=*/false);
    
      // For writes, invoke the callback and then erase the write.
      auto assign_ops = func_op.front().getOps<TF::AssignVariableOp>();
      for (auto assign_variable_op : llvm::make_early_inc_range(assign_ops)) {
        Value resource = assign_variable_op.getResource();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		t.Fatalf("Watch failed: %v", err)
    	}
    
    	testCheckResult(t, w, watch.Event{Type: watch.Added, Object: out})
    	w.Stop()
    
    	// Compact previous versions
    	if compaction == nil {
    		t.Skip("compaction callback not provided")
    	}
    
    	// Update again
    	newOut := &example.Pod{}
    	err = store.GuaranteedUpdate(ctx, key, newOut, true, nil, storage.SimpleUpdate(
    		func(runtime.Object) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

               * clearListeners.
               */
              executeListener(task, requireNonNull(curr.executor));
            }
          }
          break;
        }
      }
    
      /**
       * Callback method that is called exactly once after the future is completed.
       *
       * <p>If {@link #interruptTask} is also run during completion, {@link #afterDone} runs after it.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

               * clearListeners.
               */
              executeListener(task, requireNonNull(curr.executor));
            }
          }
          break;
        }
      }
    
      /**
       * Callback method that is called exactly once after the future is completed.
       *
       * <p>If {@link #interruptTask} is also run during completion, {@link #afterDone} runs after it.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top