Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for info2 (0.43 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    	if err != nil {
    		if !os.IsNotExist(err) {
    			return nil, fmt.Errorf("failed to get file info: %v", err)
    		}
    
    		// File does not exist.
    		if certSignerDomain == "" {
    			log.Infof("CA cert file %q not found, using %q.", caCertFile, defaultCACertPath)
    			caCertFile = defaultCACertPath
    		} else {
    			log.Infof("CA cert file %q not found - ignoring.", caCertFile)
    			caCertFile = ""
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    	configSizeBytes.With(typeTag.Value(w.TypeUrl)).Record(float64(configSize))
    
    	ptype := "PUSH"
    	info := ""
    	if logdata.Incremental {
    		ptype = "PUSH INC"
    	}
    	if len(logdata.AdditionalInfo) > 0 {
    		info = " " + logdata.AdditionalInfo
    	}
    	if len(logFiltered) > 0 {
    		info += logFiltered
    	}
    
    	if err := con.sendDelta(resp, newResourceNames); err != nil {
    		logger := deltaLog.Debugf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    	return nil
    }
    
    // initDiscoveryService initializes discovery server on plain text port.
    func (s *Server) initDiscoveryService() {
    	log.Infof("starting discovery service")
    	// Implement EnvoyXdsServer grace shutdown
    	s.addStartFunc("xds server", func(stop <-chan struct{}) error {
    		log.Infof("Starting ADS server")
    		s.XDSServer.Start(stop)
    		return nil
    	})
    }
    
    // Wait for the stop, and do cleanups
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/certcontroller.go

    	log.Infof("update root cert and generate new dns certs")
    	caBundle := s.CA.GetCAKeyCertBundle().GetRootCertPem()
    	certChain, keyPEM, err := s.CA.GenKeyCert(s.dnsNames, SelfSignedCACertTTL.Get(), false)
    	if err != nil {
    		return err
    	}
    
    	if features.MultiRootMesh {
    		// Trigger trust anchor update, this will send PCDS to all sidecars.
    		log.Infof("Update trust anchor with new root cert")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/client.go

    		return
    	}
    
    	t0 := time.Now()
    	cl.logger.Infof("Starting Pilot K8S CRD controller")
    
    	if !kube.WaitForCacheSync("crdclient", stop, cl.informerSynced) {
    		cl.logger.Errorf("Failed to sync Pilot K8S CRD controller cache")
    		return
    	}
    	cl.logger.Infof("Pilot K8S CRD controller synced in %v", time.Since(t0))
    	cl.queue.Run(stop)
    	cl.logger.Infof("controller terminated")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. cmd/encryption-v1.go

    				return encrypted, errEncryptedObject
    			}
    		}
    
    		if _, err = info.DecryptedSize(); err != nil {
    			return encrypted, err
    		}
    
    		if _, ok := crypto.IsEncrypted(info.UserDefined); ok && !crypto.IsMultiPart(info.UserDefined) {
    			info.ETag = getDecryptedETag(headers, *info, false)
    		}
    	}
    
    	return encrypted, nil
    }
    
    type (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    					// 3. No for everything else.
    					if current, exists := plainTextServers[resolvedPort]; exists {
    						if !canMergeProtocols(serverProtocol, protocol.Parse(current.Protocol)) && current.Bind == serverPort.Bind {
    							log.Infof("skipping server on gateway %s port %s.%d.%s: conflict with existing server %d.%s",
    								gatewayConfig.Name, s.Port.Name, resolvedPort, s.Port.Protocol, serverPort.Number, serverPort.Protocol)
    							RecordRejectedConfig(gatewayName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    		// unnecessary full push which can become a real problem if a pod is in crashloop and thus endpoints
    		// flip flopping between 1 and 0.
    		e.DeleteServiceShard(shard, hostname, namespace, true)
    		log.Infof("Incremental push, service %s at shard %v has no endpoints", hostname, shard)
    		return IncrementalPush
    	}
    
    	pushType := IncrementalPush
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		var targetWaypoint *Waypoint
    		if instancedWaypoint := fetchWaypointForInstance(ctx, Waypoints, p.ObjectMeta); instancedWaypoint != nil {
    			// we're an instance of a waypoint, set inbound tunnel info
    			appTunnel = &workloadapi.ApplicationTunnel{
    				Protocol: instancedWaypoint.DefaultBinding.Protocol,
    				Port:     instancedWaypoint.DefaultBinding.Port,
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

        ::testing::ValuesIn<MatMulTestCase>({
            {"BatchMatMul"},
            {"BatchMatMulV2"},
            {"BatchMatMulV3"},
        }),
        [](const ::testing::TestParamInfo<BatchMatMulTest::ParamType>& info) {
          return info.param.mat_mul_method;
        });
    
    TEST(LegalizeTFTest, DumpsProducedHLO) {
      Env* env = Env::Default();
      std::string test_dir = testing::TmpDir();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top