Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 347 for GETs (0.11 sec)

  1. cmd/bucket-replication-handlers.go

    		return
    	}
    
    	// Write success response.
    	writeSuccessResponseHeadersOnly(w)
    }
    
    // GetBucketReplicationConfigHandler - GET Bucket replication configuration.
    // ----------
    // Gets the replication configuration for a bucket.
    func (api objectAPIHandlers) GetBucketReplicationConfigHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "GetBucketReplicationConfig")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    			return nil
    		}
    		podIPs = append(podIPs, podIP.Ip)
    	}
    
    	return podIPs
    }
    
    // getPodSandboxID gets the sandbox id by podUID and returns ([]sandboxID, error).
    // Param state could be nil in order to get all sandboxes belonging to same pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	rm := &Manager{
    		cfg:           cfg,
    		kubernetesDir: kubernetesDir,
    		certificates:  map[string]*CertificateRenewHandler{},
    		cas:           map[string]*CAExpirationHandler{},
    	}
    
    	// gets the list of certificates that are expected according to the current cluster configuration
    	certListFunc := certsphase.GetDefaultCertList
    	if cfg.Etcd.External != nil {
    		certListFunc = certsphase.GetCertsWithoutEtcd
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        @Nonnull
        Instant getStartTime();
    
        /**
         * Gets the directory of the topmost project being built, usually the current directory or the
         * directory pointed at by the {@code -f/--file} command line argument.
         */
        @Nonnull
        Path getTopDirectory();
    
        /**
         * Gets the root directory of the session, which is the root directory for the top directory project.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. src/runtime/defer_test.go

    }
    
    // Try to reproduce issue #37688, where a pointer to an open-coded defer struct is
    // mistakenly held, and that struct keeps a pointer to a stack-allocated defer
    // struct, and that stack-allocated struct gets overwritten or the stack gets
    // moved, so a memory error happens on GC.
    func TestIssue37688(t *testing.T) {
    	for j := 0; j < 10; j++ {
    		g2()
    		g3()
    	}
    }
    
    type foo struct {
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. pkg/controller/resourceclaim/controller.go

    	// resourceclaim.Name checks for the situation that the client doesn't
    	// know some future addition to the API. Therefore it gets called here
    	// even if there is no template to work on, because if some new field
    	// gets added, the expectation might be that the controller does
    	// something for it.
    	claimName, mustCheckOwner, err := resourceclaim.Name(pod, &podClaim)
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

      }
    };
    
    // Returns true iff func_op has either no Region or the body has no Blocks.
    bool IsFuncOpEmpty(func::FuncOp func_op) {
      return func_op->getNumRegions() == 0 || func_op.getBody().empty();
    }
    
    // Gets the GraphOp from the function op. Returns an empty op iff it doesn't
    // exist.
    GraphOp GetGraphOpFromFuncOp(func::FuncOp func_op) {
      if (IsFuncOpEmpty(func_op)) return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. cmd/notification.go

    		if err != nil {
    			reply[index].Errors = []string{fmt.Sprintf("%s: %s (rpc)", sys.peerClients[index].String(), err.Error())}
    		}
    	}
    	return reply
    }
    
    // GetResourceMetrics - gets the resource metrics from all nodes excluding self.
    func (sys *NotificationSys) GetResourceMetrics(ctx context.Context) <-chan MetricV2 {
    	if sys == nil {
    		return nil
    	}
    	g := errgroup.WithNErrs(len(sys.peerClients))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    	// GetImageRef gets the reference (digest or ID) of the image which has already been in
    	// the local storage. It returns ("", nil) if the image isn't in the local storage.
    	GetImageRef(ctx context.Context, image ImageSpec) (string, error)
    	// ListImages gets all images currently on the machine.
    	ListImages(ctx context.Context) ([]Image, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

            } catch (UnsupportedOperationException e) {
                return -1;
            }
        }
    
        /**
         * Select idle daemon clients to stop.
         *
         * @param selectionFunction Gets all idle daemon clients, daemons of returned clients are stopped
         */
        @VisibleForTesting
        void selectIdleClientsToStop(Transformer<List<WorkerDaemonClient>, List<WorkerDaemonClient>> selectionFunction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top