Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for INITIALIZING (0.17 sec)

  1. pilot/pkg/bootstrap/server.go

    		return nil, fmt.Errorf("error initializing debug server: %v", err)
    	}
    	if err := s.serveHTTP(); err != nil {
    		return nil, fmt.Errorf("error serving http: %v", err)
    	}
    
    	// Apply the arguments to the configuration.
    	if err := s.initKubeClient(args); err != nil {
    		return nil, fmt.Errorf("error initializing kube client: %v", err)
    	}
    
    	s.initMeshConfiguration(args, s.fileWatcher)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    		Creds:     cr.NewStaticV4(value.AccessKeyID, value.SecretAccessKey, value.SessionToken),
    		Secure:    s.secure,
    		Transport: s.TestSuiteCommon.client.Transport,
    	})
    	if err != nil {
    		c.Fatalf("Error initializing client: %v", err)
    	}
    
    	// Validate that the client from sts creds can access the bucket.
    	c.mustListObjects(ctx, minioClient, bucket)
    
    	// Create an madmin client with user creds
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/webhook.go

    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    	istiolog.Info("initializing secure webhook server for istiod webhooks")
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	s.httpsMux = http.NewServeMux()
    	s.httpsServer = &http.Server{
    		Addr:      args.ServerOptions.HTTPSAddr,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pkg/kube/namespace/filter.go

    	// convert LabelSelectors to Selectors
    	for _, selector := range discoverySelectors {
    		ls, err := LabelSelectorAsSelector(selector)
    		if err != nil {
    			log.Errorf("error initializing discovery namespaces filter, invalid discovery selector: %v", err)
    			return
    		}
    		selectors = append(selectors, ls)
    	}
    
    	// range over all namespaces to get discovery namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    			}
    			initializing = true
    		case container.State.Waiting != nil && len(container.State.Waiting.Reason) > 0 && container.State.Waiting.Reason != "PodInitializing":
    			reason = "Init:" + container.State.Waiting.Reason
    			initializing = true
    		default:
    			reason = fmt.Sprintf("Init:%d/%d", i, len(pod.Spec.InitContainers))
    			initializing = true
    		}
    		break
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		var ok bool
    		readyGeneration, ok = c.ready.checkAndReadGeneration()
    		if !ok {
    			return nil, errors.NewTooManyRequests("storage is (re)initializing", 1)
    		}
    	} else {
    		readyGeneration, err = c.ready.waitAndReadGeneration(ctx)
    		if err != nil {
    			return nil, errors.NewServiceUnavailable(err.Error())
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. cmd/erasure-multipart.go

    	if !result.IsTruncated {
    		result.NextKeyMarker = ""
    		result.NextUploadIDMarker = ""
    	}
    
    	return result, nil
    }
    
    // newMultipartUpload - wrapper for initializing a new multipart
    // request; returns a unique upload id.
    //
    // Internally this function creates 'uploads.json' associated for the
    // incoming object at
    // '.minio.sys/multipart/bucket/object/uploads.json' on all the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            op, input.getType(), input, expanded_item, start_position);
        return success();
      }
    
      bool enable_dynamic_update_slice;
    };
    
    // Rewrites op of the template type initializing a TensorList with a list of ops
    // to generate an equivalent raw tensor. Derived classes are required to
    // override GetNumElements method.
    template <typename OpT>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			t.Errorf("Unexpected error: %#v", err)
    		}
    	} else {
    		if err == nil || err.Error() != apierrors.NewTooManyRequests("storage is (re)initializing", 1).Error() {
    			t.Errorf("Unexpected error: %#v", err)
    		}
    	}
    }
    
    func TestWatcherNotGoingBackInTime(t *testing.T) {
    	backingStorage := &dummyStorage{}
    	cacher, v, err := newTestCacher(backingStorage)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Component-base/logs: when compiled with Go >= 1.21, component-base will automatically configure the slog default logger together with initializing klog. ([#120696](https://github.com/kubernetes/kubernetes/pull/120696), [@pohly](https://github.com/pohly)) [SIG API Machinery, Architecture, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Network, Storage and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top